mirror of
https://github.com/mgcaret/rom4x.git
synced 2024-12-28 09:32:19 +00:00
d159a92a7d
causes a crash when a Mockingboard IIc+ is enabled.
14 lines
370 B
ArmAsm
14 lines
370 B
ArmAsm
; patch GETLN1 to call delete key handler
|
|
;
|
|
; This patch uses the run of NOPs in RDKEY since there wasn't enough space here
|
|
; (6 bytes needed, 5 available).
|
|
.code
|
|
.include "iic+.defs"
|
|
.org $fd78
|
|
cmp #$ff ; check for delete
|
|
beq $fd12 ; go to part 2 of the patch
|
|
cmp #$95 ; check for control-u
|
|
bne $fd84
|
|
jsr $cc1d ; lift char
|
|
|