gbdk-releases/gbdk-lib/libc/consolez80/putchar.s
2015-01-10 16:25:06 +01:00

15 lines
110 B
ArmAsm

.area _CODE
_putchar::
push ix
ld ix,#0
add ix,sp
ld l,4(ix)
ld a,#0
out (0xff),a
pop ix
ret