mirror of
https://github.com/mgcaret/rom4x.git
synced 2025-01-03 03:29:30 +00:00
12 lines
167 B
ArmAsm
12 lines
167 B
ArmAsm
; call RDCHAR, convert DEL to space
|
|
; for patching into GETLN1/NXTCHAR (at $FD75)
|
|
.code
|
|
.include "iic+.defs"
|
|
.org $c4ee
|
|
jsr $cced
|
|
cmp #$ff
|
|
bne :+
|
|
lda #$88
|
|
: rts
|
|
|