mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
z8: Fix disassembly of LD IR, R opcode
This commit is contained in:
parent
79cf324b16
commit
b8849651f4
@ -366,7 +366,7 @@ offs_t z8_disassembler::disassemble(std::ostream &stream, offs_t pc, const data_
|
||||
case 0xf2: illegal; break;
|
||||
case 0xf3: mnemonic("LD"); arg_Ir(B0H); arg_r(B0L); bytes(2); break;
|
||||
case 0xf4: illegal; break;
|
||||
case 0xf5: mnemonic("LD"); arg_IR(B0); arg_R(B1); bytes(3); break;
|
||||
case 0xf5: mnemonic("LD"); arg_IR(B1); arg_R(B0); bytes(3); break;
|
||||
case 0xf6: illegal; break;
|
||||
case 0xf7: illegal; break;
|
||||
case 0xf8: mnemonic("LD"); arg_r(OPH); arg_R(B0); bytes(2); break;
|
||||
|
Loading…
Reference in New Issue
Block a user