gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
gbdk-lib/libc/targets/z80/mode.s
1 .include "global.s"
2
3 .title "screen modes"
4 .module Modes
5
6 .area _HOME
7
8 _mode::
9 pop de
10 pop hl
11 push hl
12 push de
13
14 .set_mode::
15 ld a, l
16 ld (.mode), a
17 ret
18
19 _get_mode::
20 ld hl, #.mode
21 ld l, (hl)
22 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.