Fix more bugs

This commit is contained in:
Byron Lathi
2023-12-01 00:56:16 -08:00
parent a169b30028
commit 32c82044a7
3 changed files with 15 additions and 11 deletions

View File

@@ -85,7 +85,7 @@ L1: rts
ldy #$00 ; initialize y to 0
L1: lda (ptr1),y ; load character from string
beq L2 ; Quit if NULL
jsr _uart_txb_block ; send character (does not change y or ptr1)
jsr _serial_putc ; send character (does not change y or ptr1)
iny ; increment y
bne L1 ; If Y == 0, increment high byte of pointer
inc ptr1+1