gbdk-releases/sdcc/device/lib/gbz80/putchar.s

19 lines
280 B
ArmAsm
Raw Permalink Normal View History

2015-01-10 16:25:06 +01:00
.area _CODE
2015-01-10 16:25:09 +01:00
_putchar::
_putchar_rr_s::
ld hl,#2
add hl,sp
ld l,(hl)
ld a,#1
rst 0x08
ret
_putchar_rr_dbs::
ld l,e
ld a,#1
rst 0x08
2015-01-10 16:25:06 +01:00
2015-01-10 16:25:09 +01:00
ret