1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-17 19:30:02 +00:00

Fixed a bug in JMP (IND)

git-svn-id: svn://svn.cc65.org/cc65/trunk@1918 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2003-02-02 11:19:51 +00:00
parent 03aa9332cb
commit 47ce743518

View File

@@ -6,9 +6,9 @@
/* */ /* */
/* */ /* */
/* */ /* */
/* (C) 2002 Ullrich von Bassewitz */ /* (C) 2002-2003 Ullrich von Bassewitz */
/* Wacholderweg 14 */ /* R<EFBFBD>merstrasse 52 */
/* D-70597 Stuttgart */ /* D-70794 Filderstadt */
/* EMail: uz@cc65.org */ /* EMail: uz@cc65.org */
/* */ /* */
/* */ /* */
@@ -1024,7 +1024,6 @@ static void OPC_6502_6C (void)
/* 65C02 and above have this bug fixed */ /* 65C02 and above have this bug fixed */
PC = MemReadWord (Addr); PC = MemReadWord (Addr);
} }
PC += 3;
} }