diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-05-01 10:24:46 +0000 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-05-01 10:24:46 +0000 |
| commit | aac1663d7579cb9e821d342dda9f999623d20b62 (patch) | |
| tree | c9a273241ff52100d9a79dec64d0d3002bdaee24 /src/include | |
| parent | 5b9d963d314aa99302fa5cddb459e34e408d47b2 (diff) | |
| download | box64-aac1663d7579cb9e821d342dda9f999623d20b62.tar.gz box64-aac1663d7579cb9e821d342dda9f999623d20b62.zip | |
[RV64_DYNAREC] Add detection of Zba, Zbb, Zbc and Zbs CPU extensions
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/debug.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/debug.h b/src/include/debug.h index 37146e02..6f448fc7 100755 --- a/src/include/debug.h +++ b/src/include/debug.h @@ -33,6 +33,11 @@ extern int arm64_aes; extern int arm64_pmull; extern int arm64_crc32; extern int arm64_atomics; +#elif defined(RV64) +extern int rv64_zba; +extern int rv64_zbb; +extern int rv64_zbc; +extern int rv64_zbs; #endif #endif extern int box64_libcef; |