git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

gbdk-lib/libc/targets/z80/msxdos/bdos_putchar.s

      1         .include        "global.s"
      2 
      3         .title  "putchar"
      4         .module putchar
      5 
      6         .area   _CODE
      7 
      8 _setchar::
      9 _putchar::
     10         pop hl
     11         pop de
     12         push de         ; char in E
     13         push hl
     14         JP_BDOS #_CONOUT
     15 	

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.