From b4d44f4e84c5b729eba5dab79f5188693eec433a Mon Sep 17 00:00:00 2001 From: Gale Faraday Date: Fri, 5 Sep 2025 23:51:19 -0500 Subject: [PATCH] fix(boot): fix broken address mode and spacing cleanup --- code/boot/src/reset.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/boot/src/reset.s b/code/boot/src/reset.s index afc3c4b..f7d8053 100644 --- a/code/boot/src/reset.s +++ b/code/boot/src/reset.s @@ -26,7 +26,7 @@ NEXT@ leax 1,x cmpx #STACK_DEPTH ; See if we're at the top of the stack yet blo NEXT@ ; Loop if we aren't at the end yet - lds STACK_TOP ; Set S to top of newly cleared stack + lds #STACK_TOP ; Set S to top of newly cleared stack SERINIT ; 8n1 Serial Enable DLAB @@ -40,7 +40,7 @@ SERINIT sta UART_LCR lda #(UARTF_MCR_RTS) ; Enable Request-to-Send sta UART_MCR - lda #'H ; send 'H' + lda #'H ; send 'H' sta UART_BUFR WAIT