summaryrefslogtreecommitdiff
path: root/home/text.asm
diff options
context:
space:
mode:
authorMr Wint <MrWint42@gmail.com>2013-10-01 23:23:21 +0200
committerMr Wint <MrWint42@gmail.com>2013-10-01 23:23:21 +0200
commit255135d1878b76bf82122ade20cb1c2132553ec7 (patch)
treed3da03b03c2cf0e54ffb17b1acd3d4b8476c813d /home/text.asm
parent94d4c89e093b76a0964114bd7a370046e70e965e (diff)
* extracted and added a bunch of assembly
Diffstat (limited to 'home/text.asm')
-rw-r--r--home/text.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/home/text.asm b/home/text.asm
index e010de6d4..a0b1eb644 100644
--- a/home/text.asm
+++ b/home/text.asm
@@ -2,7 +2,7 @@ ClearBox: ; fb6
; Fill a c*b box at hl with blank tiles.
ld a, " "
-.y
+Functionfb8:
push bc
push hl
.x
@@ -14,7 +14,7 @@ ClearBox: ; fb6
add hl, bc
pop bc
dec b
- jr nz, .y
+ jr nz, Functionfb8
ret
; fc8