Fixed MOV opcode 0xA3, had wrong operand size (h.johansson) - disasm

This commit is contained in:
Stanislav Shwartsman 2004-07-28 19:02:40 +00:00
parent 1c3d8436c6
commit 158ba92f2e
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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 },