From b6bab7da6d561efd9cac66f181e9334c4144c4ba Mon Sep 17 00:00:00 2001 From: hap Date: Sat, 7 Mar 2015 17:58:26 +0100 Subject: [PATCH] fix prev commit --- src/emu/cpu/hmcs40/hmcs40d.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/cpu/hmcs40/hmcs40d.c b/src/emu/cpu/hmcs40/hmcs40d.c index bdc815145a4..53b4ebd292d 100644 --- a/src/emu/cpu/hmcs40/hmcs40d.c +++ b/src/emu/cpu/hmcs40/hmcs40d.c @@ -76,10 +76,10 @@ static const UINT32 s_flags[] = }; // next program counter in sequence (relative) -static const INT8 s_next_pc[0x40] = +static const INT16 s_next_pc[0x40] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, - 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32+1, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32+0x40, -32, -31, -30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, -1 };