diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-04-11 13:01:51 +0000 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-04-11 13:01:51 +0000 |
| commit | e96b1c810672a2493050a36d32f4961b3158901c (patch) | |
| tree | 6af9594d202a62567c1cbbc63859b87e3af6d19c /src/include | |
| parent | fdb6908474979b6602fa2c23087cf4ddc4c988e7 (diff) | |
| download | box64-e96b1c810672a2493050a36d32f4961b3158901c.tar.gz box64-e96b1c810672a2493050a36d32f4961b3158901c.zip | |
[RV64_DYNAREC] Added 0F BC/BD opcodes
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/bitutils.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/bitutils.h b/src/include/bitutils.h index 075e8e0b..50622da6 100644 --- a/src/include/bitutils.h +++ b/src/include/bitutils.h @@ -2,6 +2,9 @@ #define __BITUTILS_H_ #include <stdint.h> +extern const uint8_t deBruijn64tab[64]; +extern const uint8_t lead0tab[16]; + int TrailingZeros64(uint64_t x); #endif //__BITUTILS_H_ |