diff options
Diffstat (limited to 'src/devices/cpu/z8/z8dasm.cpp')
-rw-r--r-- | src/devices/cpu/z8/z8dasm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/z8/z8dasm.cpp b/src/devices/cpu/z8/z8dasm.cpp index 0414a45af80..8cd29344f2a 100644 --- a/src/devices/cpu/z8/z8dasm.cpp +++ b/src/devices/cpu/z8/z8dasm.cpp @@ -256,8 +256,8 @@ CPU_DISASSEMBLE(z8) case 0x90: mnemonic("RL"); arg_R(B0); bytes(2); break; case 0x91: mnemonic("RL"); arg_IR(B0); bytes(2); break; - case 0x92: mnemonic("LDE"); arg_r(B0L); arg_Irr(B0H); bytes(2); break; - case 0x93: mnemonic("LDEI"); arg_Ir(B0L); arg_Irr(B0H); bytes(2); break; + case 0x92: mnemonic("LDE"); arg_Irr(B0L); arg_r(B0H); bytes(2); break; + case 0x93: mnemonic("LDEI"); arg_Irr(B0L); arg_Ir(B0H); bytes(2); break; case 0x94: illegal; break; case 0x95: illegal; break; case 0x96: illegal; break; |