mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
17 lines
248 B
ArmAsm
17 lines
248 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 29.10.99
|
||
|
|
||
|
; void InvertLine (char y, int xstart, int xend);
|
||
|
|
||
|
.import HLineRegs
|
||
|
.export _InvertLine
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
|
||
|
_InvertLine:
|
||
|
jsr HLineRegs
|
||
|
jmp InvertLine
|