aboutsummaryrefslogtreecommitdiff
path: root/src/ubox/ubox_fill_screen.z80
diff options
context:
space:
mode:
authorJuan J. Martínez <jjm@usebox.net>2022-01-07 19:07:59 +0000
committerJuan J. Martínez <jjm@usebox.net>2022-01-07 19:07:59 +0000
commit0b007b77028aa3ef2056ff915b0a197576b3c4f9 (patch)
treed9e29728697bc3ccf34d322a29a7e9b47e6ea2b0 /src/ubox/ubox_fill_screen.z80
parentc149e9f96d9f6901656a2dfe4482bb8b45f1f62b (diff)
parentce3c89948e6fc3c7234e8f47e048d74f917e6bf9 (diff)
downloadubox-msx-lib-0b007b77028aa3ef2056ff915b0a197576b3c4f9.tar.gz
ubox-msx-lib-0b007b77028aa3ef2056ff915b0a197576b3c4f9.zip
Merge branch 'master' into 'master'
Replacing VRAM magic numbers with constants See merge request reidrac/ubox-msx-lib!23
Diffstat (limited to 'src/ubox/ubox_fill_screen.z80')
-rw-r--r--src/ubox/ubox_fill_screen.z803
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ubox/ubox_fill_screen.z80 b/src/ubox/ubox_fill_screen.z80
index ed8c58f..e803f76 100644
--- a/src/ubox/ubox_fill_screen.z80
+++ b/src/ubox/ubox_fill_screen.z80
@@ -1,10 +1,11 @@
.globl _ubox_fill_screen
FILVRM = 0x0056
+BG_TILE_MAP = 0x1800
_ubox_fill_screen::
ld a, l
- ld hl, #0x1800
+ ld hl, #BG_TILE_MAP
ld bc, #768
jp FILVRM