mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
23 lines
375 B
ArmAsm
23 lines
375 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2004-10-06
|
|
;
|
|
; int __fastcall__ putchar (int c);
|
|
;
|
|
|
|
.export _putchar
|
|
.import pushax
|
|
.import _stdout
|
|
.import _fputc
|
|
|
|
|
|
.code
|
|
|
|
_putchar:
|
|
jsr pushax ; Push c
|
|
lda _stdout
|
|
ldx _stdout+1
|
|
jmp _fputc ; __fastcall__ function
|
|
|
|
|
|
|