From 8625611d2b0dd467f2374057fd22660e97e02b55 Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 4 Oct 2017 01:31:06 -0400 Subject: [PATCH] z8: Fix disassembly of LDE Irr, r --- src/devices/cpu/z8/z8dasm.cpp | 4 ++-- 1 file 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;