mirror of
https://github.com/mgcaret/rom4x.git
synced 2024-10-05 08:55:16 +00:00
12 lines
166 B
ArmAsm
12 lines
166 B
ArmAsm
; call RDCHAR, convert DEL to space
|
|
; for patching into GETLN1/NXTCHAR (at $FD75)
|
|
.code
|
|
.include "iic.defs"
|
|
.org $c2f0
|
|
jsr $cced
|
|
cmp #$ff
|
|
bne :+
|
|
lda #$88
|
|
: rts
|
|
|