Re-worked the makefiles and includes to target z80 and gbz80 as well
[fw/sdcc] / device / lib / z80 / putchar.s
1         .area _CODE
2 _putchar::
3         ld      a,#1
4         rst     0x08
5
6         ret
7