From: cuz Date: Sun, 2 Feb 2003 11:19:51 +0000 (+0000) Subject: Fixed a bug in JMP (IND) X-Git-Tag: V2.12.0~1769 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=47ce7435181daa776c58cb8537e1836568252d43;p=cc65 Fixed a bug in JMP (IND) git-svn-id: svn://svn.cc65.org/cc65/trunk@1918 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/sim65/cpucore.c b/src/sim65/cpucore.c index 814085c1e..934b76670 100644 --- a/src/sim65/cpucore.c +++ b/src/sim65/cpucore.c @@ -6,9 +6,9 @@ /* */ /* */ /* */ -/* (C) 2002 Ullrich von Bassewitz */ -/* Wacholderweg 14 */ -/* D-70597 Stuttgart */ +/* (C) 2002-2003 Ullrich von Bassewitz */ +/* Römerstrasse 52 */ +/* D-70794 Filderstadt */ /* EMail: uz@cc65.org */ /* */ /* */ @@ -1024,7 +1024,6 @@ static void OPC_6502_6C (void) /* 65C02 and above have this bug fixed */ PC = MemReadWord (Addr); } - PC += 3; }