From 356f430ffe323233bebaee39228c9e22578b5791 Mon Sep 17 00:00:00 2001 From: ArthurFerreira2 Date: Fri, 25 Jun 2021 09:25:07 +0200 Subject: [PATCH] Update puce6502.c --- puce6502.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/puce6502.c b/puce6502.c index 300c38f..87296fb 100644 --- a/puce6502.c +++ b/puce6502.c @@ -698,13 +698,12 @@ uint16_t getPC(){ oldticks = ticks; if (newPC == 0x3469){ // 6502_functional_test SUCCESS - printf("\nReached end of 6502_functional_test @ %04X : SUCCESS !\n", newPC); + printf("\nReached end of 6502_functional_test @ 0x3469 : SUCCESS !\n"); break; } if (newPC == oldPC ) { printf("\n\nLoop detected @ %04X - Press ENTER to proceed with next test or CTRL to stop\n\n", newPC); - return(-1); getchar(); reg.PC = newPC + 2; }