We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 386b66f commit fa7cbdbCopy full SHA for fa7cbdb
1 file changed
lib86cpu/core/translate.cpp
@@ -1526,6 +1526,13 @@ cpu_translate(cpu_t *cpu)
1526
cpu->jit->popf(&instr);
1527
break;
1528
1529
+ case ZYDIS_MNEMONIC_PREFETCHNTA:
1530
+ case ZYDIS_MNEMONIC_PREFETCHT0:
1531
+ case ZYDIS_MNEMONIC_PREFETCHT1:
1532
+ case ZYDIS_MNEMONIC_PREFETCHT2:
1533
+ // nothing to do, because we don't emulate the processor's caches
1534
+ break;
1535
+
1536
case ZYDIS_MNEMONIC_PUSH:
1537
cpu->jit->push(&instr);
1538
0 commit comments