diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-06-25 15:24:59 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-06-25 15:24:59 +0200 |
| commit | 4e2ccf13cb18828d2aa0b9fb53723383747c1d76 (patch) | |
| tree | a04155bc4d1b67519b3c0ade83d94db6bcd271b9 | |
| parent | 8d0a7d322eef487c1e7f634719cd76b848497f13 (diff) | |
| download | box64-4e2ccf13cb18828d2aa0b9fb53723383747c1d76.tar.gz box64-4e2ccf13cb18828d2aa0b9fb53723383747c1d76.zip | |
[32BITS] Added 82 opcodes
| -rwxr-xr-x | src/emu/x64run.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emu/x64run.c b/src/emu/x64run.c index 8f23eac4..a3409570 100755 --- a/src/emu/x64run.c +++ b/src/emu/x64run.c @@ -543,6 +543,12 @@ x64emurun: ,,STEP2 ) /* Jxx Ib */ + case 0x82: + if(!rex.is32bits) { + unimp = 1; + goto fini; + } + // fallthru case 0x80: /* GRP Eb,Ib */ nextop = F8; GETEB(1); |