mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
18 lines
268 B
ArmAsm
18 lines
268 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 25.12.99
|
||
|
|
||
|
; void GraphicsString (char *myString);
|
||
|
|
||
|
.export _GraphicsString
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
.include "../inc/geossym.inc"
|
||
|
|
||
|
_GraphicsString:
|
||
|
sta r0L
|
||
|
stx r0H
|
||
|
jmp GraphicsString
|