diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-02-17 09:25:00 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-02-17 09:25:00 +0100 |
| commit | a79e1be034be8e3d35bed08ff0ff11e27bc388d2 (patch) | |
| tree | b8a1ee28eb66adf024d04946fc92b07a080c6e17 /src/emu | |
| parent | 5924a8eca1873b3e38909fe39f4287f5f12210b3 (diff) | |
| download | box64-a79e1be034be8e3d35bed08ff0ff11e27bc388d2.tar.gz box64-a79e1be034be8e3d35bed08ff0ff11e27bc388d2.zip | |
Added 67 C6 opcode ([ARM64_DYNAREC] too)
Diffstat (limited to 'src/emu')
| -rw-r--r-- | src/emu/x64run67.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/x64run67.c b/src/emu/x64run67.c index 5d9f41c6..6a5b2143 100644 --- a/src/emu/x64run67.c +++ b/src/emu/x64run67.c @@ -328,6 +328,11 @@ uintptr_t Run67(x64emu_t *emu, rex_t rex, int rep, uintptr_t addr) } break; + case 0xC6: /* MOV Eb,Ib */ + nextop = F8; + GETEB32(1); + EB->byte[0] = F8; + break; case 0xC7: /* MOV Ed,Id */ nextop = F8; GETED32(4); |