mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
19 lines
302 B
ArmAsm
19 lines
302 B
ArmAsm
|
|
||
|
;
|
||
|
; Maciej 'YTM/Alliance' Witkowiak
|
||
|
;
|
||
|
; 30.10.99
|
||
|
|
||
|
; void PutDecimal (char style, int value, char y, int x);
|
||
|
|
||
|
.import popa, popax
|
||
|
.import getintcharint
|
||
|
.export _PutDecimal
|
||
|
|
||
|
.include "../inc/jumptab.inc"
|
||
|
|
||
|
_PutDecimal:
|
||
|
jsr getintcharint
|
||
|
jsr popa
|
||
|
jmp PutDecimal
|