summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2017-10-04 01:31:06 -0400
committer AJR <ajrhacker@users.noreply.github.com>2017-10-04 01:31:06 -0400
commit8625611d2b0dd467f2374057fd22660e97e02b55 (patch)
treedf661005855fb2bc971f45cba36c0f32042bd196
parentb591657afdba95499b360a2a7918707307923e10 (diff)
z8: Fix disassembly of LDE Irr, r
-rw-r--r--src/devices/cpu/z8/z8dasm.cpp4
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;