mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
21 lines
347 B
ArmAsm
21 lines
347 B
ArmAsm
;
|
|
; Maciej 'YTM/Alliance' Witkowiak
|
|
;
|
|
; 30.10.99
|
|
|
|
; void PutChar (char character, char y, int x);
|
|
|
|
.import popa
|
|
.export _PutChar
|
|
|
|
.include "jumptab.inc"
|
|
.include "geossym.inc"
|
|
|
|
_PutChar:
|
|
sta r11L
|
|
stx r11H
|
|
jsr popa
|
|
sta r1H
|
|
jsr popa
|
|
jmp PutChar
|