From 9d263ae4d5ae12022177b4dda9120c88b20604df Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Tue, 16 Apr 2013 22:29:00 -0700 Subject: Make reset trigger debug exit to make it easier to test the same cases in blastem and musashi. Fix asl #1 overflow flag. --- z80inst.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'z80inst.c') diff --git a/z80inst.c b/z80inst.c index 4a326a2..ce936c6 100644 --- a/z80inst.c +++ b/z80inst.c @@ -1118,7 +1118,9 @@ z80inst z80_tbl_iy[256] = { NOP2, NOP2, NOP2, - NOP2 + //TODO: Enable this based on a define + {Z80_NOP, Z80_UNUSED, Z80_UNUSED, Z80_UNUSED, 42} + //NOP2 }; #define SHIFT_BLOCK_IY(op) \ @@ -1342,14 +1344,13 @@ char * z80_regs[Z80_USE_IMMED] = { "e", "h", "l", - "", - "a", "ixh", "ixl", "iyh", "iyl", "i", "r", + "a", "bc", "de", "hl", -- cgit v1.2.3