Removed baud rates from 150 and lower.

Fixed tab
Replaced uploader references to SERIAL_INTERRUPT
This commit is contained in:
Alex Thissen
2024-02-10 21:15:05 +00:00
parent 65bce9ecde
commit 6cf8ee8eb5
2 changed files with 5 additions and 32 deletions

View File

@@ -40,14 +40,14 @@ cont1:
bra loop1
read_byte:
bit SERCTL
bit SERCTL ; Check for RXRDY ($40)
bvc read_byte
lda SERDAT
rts
_UpLoaderIRQ:
lda INTSET
and #$10
and #SERIAL_INTERRUPT
bne @L0
clc
rts
@@ -69,7 +69,7 @@ again:
; last action : clear interrupt
;
exit:
lda #$10
lda #SERIAL_INTERRUPT
sta INTRST
clc
rts