diff options
| author | xctan <xctan@cirno.icu> | 2023-05-02 21:00:31 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-02 15:00:31 +0200 |
| commit | 2fb4dccff02becaeb83dd58d51da9053ec3fe256 (patch) | |
| tree | 88b4d6534bf62ded84cb32748f364ea7bd353f4f /src/main.c | |
| parent | 45a4fc34d1e37a6cb931e5181d9834c5bb1cb4fd (diff) | |
| download | box64-2fb4dccff02becaeb83dd58d51da9053ec3fe256.tar.gz box64-2fb4dccff02becaeb83dd58d51da9053ec3fe256.zip | |
[RV64_DYNAREC] Added more opcodes (#751)
* [RV64_DYNAREC] Fixed 66F0 opcodes * [RV64] Added space between extensions and RISC-V * [RV64_DYNAREC] Added 66 0F E6 CVTTPD2DQ opcode * [RV64_DYNAREC] Added 0F 0D /1 PREFETCHW opcode * [RV64_DYNAREC] Added F3 0F 2D CVTSS2SI opcode * [RV64_DYNAREC] Fixed 66 0F E6 CVTTPD2DQ opcode * [RV64_DYNAREC] Added D1 /3 RCR opcode
Diffstat (limited to 'src/main.c')
| -rwxr-xr-x | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 31884fcc..27bfa9c0 100755 --- a/src/main.c +++ b/src/main.c @@ -362,7 +362,7 @@ HWCAP2_ECV #elif defined(RV64) void RV64_Detect_Function(); RV64_Detect_Function(); - printf_log(LOG_INFO, "Dynarec for RISC-V"); + printf_log(LOG_INFO, "Dynarec for RISC-V "); printf_log(LOG_INFO, "With extension: I M A F D C"); if(rv64_zba) printf_log(LOG_INFO, " Zba"); if(rv64_zbb) printf_log(LOG_INFO, " Zbb"); |