1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 04:29:01 +00:00
cc65/libsrc/common/putchar.s

21 lines
298 B
ArmAsm
Raw Normal View History

;
; Ullrich von Bassewitz, 2004-10-06
;
; int __fastcall__ putchar (int c);
;
.export _putchar
.import _stdout
.import _fputc
.code
_putchar:
lda #<_stdout
ldx #>_stdout
jmp _fputc ; __fastcall__ function