From 47ce7435181daa776c58cb8537e1836568252d43 Mon Sep 17 00:00:00 2001
From: cuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Date: Sun, 2 Feb 2003 11:19:51 +0000
Subject: [PATCH] Fixed a bug in JMP (IND)

git-svn-id: svn://svn.cc65.org/cc65/trunk@1918 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
 src/sim65/cpucore.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

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;
 }