diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-15 20:10:54 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-15 20:10:54 -0500 |
commit | 1038ebca5e2638ecbce1052c1dad7474372a7fd5 (patch) | |
tree | 7bc9722faff9aa68ab1e5dc0960f9ce35da6bbec /gfx/overworld_font.asm | |
parent | 606817f18b67a7d033adad31cbbea19d2e05e98e (diff) |
Move more contiguous related code blocks from main.asm to engine/ and events/
Diffstat (limited to 'gfx/overworld_font.asm')
-rw-r--r-- | gfx/overworld_font.asm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gfx/overworld_font.asm b/gfx/overworld_font.asm new file mode 100644 index 000000000..203b18fa0 --- /dev/null +++ b/gfx/overworld_font.asm @@ -0,0 +1,17 @@ +LoadOverworldFont:: ; 106594 + ld de, .font + ld hl, VTiles1 + lb bc, BANK(.font), $80 + call Get2bpp + ld de, .space + ld hl, VTiles2 tile $7f + lb bc, BANK(.space), 1 + call Get2bpp + ret +; 1065ad + +.font +INCBIN "gfx/font/overworld.2bpp" + +.space +INCBIN "gfx/font/space.2bpp" |