From: Rhett Aultman Date: Thu, 13 Sep 2018 19:48:52 +0000 (-0400) Subject: Change jump target in infinite loop X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=refs%2Fheads%2Flab_1;p=nes_coding.git Change jump target in infinite loop The jump target should have been to "forever", not "reset" --- diff --git a/src/helloworld.asm b/src/helloworld.asm index 3ddbea6..b1af0b2 100644 --- a/src/helloworld.asm +++ b/src/helloworld.asm @@ -52,7 +52,7 @@ reset: lda #$bf ; volume sta $4000 forever: - jmp reset + jmp forever nmi: rti ; Return from the NMI (NTSC refresh interrupt)