Board menu (#11) [Commit 1]

This commit is contained in:
xCrystal
2023-08-14 20:09:23 +02:00
parent c405c955ba
commit 1f33436a64
18 changed files with 179 additions and 8 deletions

View File

@@ -19,6 +19,23 @@ FillBoxWithByte::
jr nz, .row
ret
FillBoxWithConsecutiveBytes::
.row
push bc
push hl
.col
ld [hli], a
inc a
dec c
jr nz, .col
pop hl
ld bc, SCREEN_WIDTH
add hl, bc
pop bc
dec b
jr nz, .row
ret
ClearTilemap::
; Fill wTilemap with blank tiles.