mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
17 lines
278 B
ArmAsm
17 lines
278 B
ArmAsm
;
|
|
; Maciej 'YTM/Alliance' Witkowiak
|
|
;
|
|
; 29.10.99
|
|
|
|
; void RecoverLine (char y, int xstart, int xend);
|
|
|
|
.import HLineRegs
|
|
.export _RecoverLine
|
|
|
|
.include "jumptab.inc"
|
|
|
|
_RecoverLine:
|
|
jsr HLineRegs
|
|
jmp RecoverLine
|
|
|