From e055d9b3007c686ec8c1f1dcd592c5c2e1624ba5 Mon Sep 17 00:00:00 2001 From: Gale Faraday Date: Sun, 19 Oct 2025 17:49:54 -0500 Subject: [PATCH] style(reset): added some comments to explain not calling CHIBIO in reset --- src/reset.s | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/reset.s b/src/reset.s index 0eb3e02..2f1244e 100644 --- a/src/reset.s +++ b/src/reset.s @@ -35,13 +35,14 @@ BOOTSCR lda #13 ; 9600 baud ldb #%11 ; 8N1 jsr INITUART ; Initialize serial console - PZSTR VERMSG ; Print version information + PZSTR VERMSG ; Since we know the addr of VERMSG at link time we can avoid + ; calling out to CHIBIO ; Hand off control to the BUZBEE monitor and print notification of leaving the ; firmware ENTERMON - PZSTR TXTRUN - jmp BUZBEE + PZSTR TXTRUN ; Print run message + jmp BUZBEE ; Jump into a monitor program ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;