mirror of
https://github.com/cc65/cc65.git
synced 2024-11-05 23:05:24 +00:00
18 lines
229 B
ArmAsm
18 lines
229 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 29.10.99
|
||
|
|
||
|
; void DrawPoint (struct pixel *mypixel);
|
||
|
|
||
|
|
||
|
.import PointRegs
|
||
|
.export _DrawPoint
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
|
||
|
_DrawPoint:
|
||
|
jsr PointRegs
|
||
|
jmp DrawPoint
|