about summary refs log tree commit diff stats
path: root/src/emu
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2023-03-29 14:55:33 +0800
committerGitHub <noreply@github.com>2023-03-29 08:55:33 +0200
commita665d2f62cb6f841954962005b73fbe371e031b5 (patch)
tree6226a999b0947256c1aa93659431b918e34718a7 /src/emu
parent0baa5a82ad00e0bb3c024be2355dd58a9399e68a (diff)
downloadbox64-a665d2f62cb6f841954962005b73fbe371e031b5.tar.gz
box64-a665d2f62cb6f841954962005b73fbe371e031b5.zip
[RV64_DYNAREC] Added some 66 0F Pxxx opcodes (#650)
* [RV64_DYNAREC] Fixed typos

* [RV64_DYNAREC] Added 66 0F FE PADDD opcode

* [RV64_DYNAREC] Added 66 0F DB PAND opcode

* [RV64_DYNAREC] Added 66 0F 76 PCMPEQD opcode

* [RV64_DYNAREC] Added 66 0F 72 /2 PSRLD opcode

* [RV64_DYNAREC] Added 66 0F DF PANDN opcode

* [RV64_DYNAREC] Added 66 0F EB POR opcode

* [RV64_DYNAREC] Fixed 66 0F 72 PSRLD opcode
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/x64test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/x64test.c b/src/emu/x64test.c
index 151d3c8f..21a5355b 100644
--- a/src/emu/x64test.c
+++ b/src/emu/x64test.c
@@ -25,7 +25,7 @@
 void print_banner(x64emu_t* ref)
 {
     printf_log(LOG_NONE, "Warning, difference between Interpreter and Dynarec in %p\n=======================================\n", (void*)ref->ip.q[0]);
-    printf_log(LOG_NONE, "DIF: Dynarec |  Intepreter\n----------------------\n");
+    printf_log(LOG_NONE, "DIFF: Dynarec |  Interpreter\n----------------------\n");
 }
 #define BANNER if(!banner) {banner=1; print_banner(ref);}
 void x64test_check(x64emu_t* ref, uintptr_t ip)