Fixed MOV opcode 0xA3, had wrong operand size (h.johansson) - disasm
This commit is contained in:
parent
1c3d8436c6
commit
158ba92f2e
@ -35,7 +35,8 @@ Changes to next release:
|
||||
! improve performance of transcendential instructions.
|
||||
|
||||
- Disassembler
|
||||
- fixed MOV opcode 0x88, has exchanged the operands (h.johansson)
|
||||
- fixed MOV opcode 0x88, had exchanged the operands (h.johansson)
|
||||
- fixed MOV opcode 0xA3, had wrong operand size (h.johansson)
|
||||
|
||||
- I/O devices
|
||||
- general
|
||||
|
@ -2304,7 +2304,7 @@ static BxDisasmOpcodeInfo_t BxDisasmOpcodes[256*2] = {
|
||||
/* A0 */ { "mov", 0, AL, Ob, XX },
|
||||
/* A1 */ { "mov", 0, eAX, Ov, XX },
|
||||
/* A2 */ { "mov", 0, Ob, AL, XX },
|
||||
/* A3 */ { "mov", 0, Ov, AX, XX },
|
||||
/* A3 */ { "mov", 0, Ov, eAX, XX },
|
||||
/* A4 */ { "movsb", 0, Yb, Xb, XX },
|
||||
/* A5 */ { "movs", 0, Yv, Xv, XX },
|
||||
/* A6 */ { "cmpsb", 0, Xb, Yb, XX },
|
||||
|
Loading…
Reference in New Issue
Block a user