fix(reset): using clra instead of lda #0

This commit is contained in:
2025-09-29 19:45:29 -05:00
parent 15872f93b9
commit 98ed74f10d

View File

@@ -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