mirror of
https://github.com/ptitSeb/box86.git
synced 2025-05-08 21:08:57 +08:00
[INTERPRETER] Added 0F 20..23 opcodes
This commit is contained in:
parent
58f1b5d1e3
commit
b9d565f444
@ -229,6 +229,15 @@ uintptr_t Run0F(x86emu_t *emu, uintptr_t addr, int *step)
|
||||
nextop = F8;
|
||||
GET_ED_;
|
||||
break;
|
||||
case 0x20: /* MOV REG, crX */
|
||||
case 0x21: /* MOV REG, drX */
|
||||
case 0x22: /* MOV cxR, REG */
|
||||
case 0x23: /* MOV drX, REG */
|
||||
// this is a privilege opcode...
|
||||
#ifndef TEST_INTERPRETER
|
||||
emit_signal(emu, SIGSEGV, (void*)R_EIP, 0);
|
||||
#endif
|
||||
break;
|
||||
|
||||
case 0x28: /* MOVAPS Gx,Ex */
|
||||
nextop = F8;
|
||||
|
Loading…
x
Reference in New Issue
Block a user