gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
gbdk-lib/libc/targets/sm83/font_color.s
1 .include "global.s"
2
3 .globl .fg_colour, .bg_colour
4
5 .area _HOME
6 _font_color::
7 LDA HL,2(SP) ; Skip return address and registers
8 LD A,(HL+) ; A = Foreground
9 LD (.fg_colour),a
10 LD A,(HL)
11 LD (.bg_colour),a
12 RET
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.