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