diff options
author | Pedro de Medeiros <pedro.medeiros@gmail.com> | 2022-01-07 15:53:15 -0300 |
---|---|---|
committer | Pedro de Medeiros <pedro.medeiros@gmail.com> | 2022-01-07 15:59:19 -0300 |
commit | ce3c89948e6fc3c7234e8f47e048d74f917e6bf9 (patch) | |
tree | d9e29728697bc3ccf34d322a29a7e9b47e6ea2b0 /src/ubox/ubox_get_tile.z80 | |
parent | c149e9f96d9f6901656a2dfe4482bb8b45f1f62b (diff) | |
download | ubox-msx-lib-ce3c89948e6fc3c7234e8f47e048d74f917e6bf9.tar.gz ubox-msx-lib-ce3c89948e6fc3c7234e8f47e048d74f917e6bf9.zip |
Replacing VRAM magic numbers with constants
Diffstat (limited to 'src/ubox/ubox_get_tile.z80')
-rw-r--r-- | src/ubox/ubox_get_tile.z80 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ubox/ubox_get_tile.z80 b/src/ubox/ubox_get_tile.z80 index 49dcb30..3a6004d 100644 --- a/src/ubox/ubox_get_tile.z80 +++ b/src/ubox/ubox_get_tile.z80 @@ -1,6 +1,7 @@ .globl _ubox_get_tile RDVRM = 0x004a +BG_TILE_MAP = 0x1800 _ubox_get_tile:: ld hl, #2 @@ -19,7 +20,7 @@ _ubox_get_tile:: add hl, hl add hl, bc - ld bc, #0x1800 + ld bc, #BG_TILE_MAP add hl, bc call RDVRM |