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