about summary refs log tree commit diff stats
path: root/src/include/debug.h
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-05-01 10:24:46 +0000
committerptitSeb <sebastien.chev@gmail.com>2023-05-01 10:24:46 +0000
commitaac1663d7579cb9e821d342dda9f999623d20b62 (patch)
treec9a273241ff52100d9a79dec64d0d3002bdaee24 /src/include/debug.h
parent5b9d963d314aa99302fa5cddb459e34e408d47b2 (diff)
downloadbox64-aac1663d7579cb9e821d342dda9f999623d20b62.tar.gz
box64-aac1663d7579cb9e821d342dda9f999623d20b62.zip
[RV64_DYNAREC] Add detection of Zba, Zbb, Zbc and Zbs CPU extensions
Diffstat (limited to 'src/include/debug.h')
-rwxr-xr-xsrc/include/debug.h5
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;