1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 01:29:37 +00:00

putchar didn't work

git-svn-id: svn://svn.cc65.org/cc65/trunk@3685 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2005-12-20 22:58:16 +00:00
parent 457c91aba9
commit 1184d5ad43

View File

@ -5,6 +5,7 @@
; ;
.export _putchar .export _putchar
.import pushax
.import _stdout .import _stdout
.import _fputc .import _fputc
@ -12,8 +13,9 @@
.code .code
_putchar: _putchar:
lda #<_stdout jsr pushax ; Push c
ldx #>_stdout lda _stdout
ldx _stdout+1
jmp _fputc ; __fastcall__ function jmp _fputc ; __fastcall__ function