From 98ed74f10d4587cefae3eae2268229f4bd14b1ab Mon Sep 17 00:00:00 2001 From: Gale Faraday Date: Mon, 29 Sep 2025 19:45:29 -0500 Subject: [PATCH] fix(reset): using clra instead of lda #0 --- src/reset.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reset.s b/src/reset.s index 6654fdf..ab5da80 100644 --- a/src/reset.s +++ b/src/reset.s @@ -23,7 +23,7 @@ RESET CLRSTACK ; Initialize the system stack - lda #$00 ; Initialize A & X to zero out the stack + clra ; Init A & X to zero out the stack ldx #$0000 NEXT@ sta STACK_BOTTOM,x ; Write a zero and progress to the next byte