@ -19,7 +19,7 @@ v_font_lowercase: ds 26 tiles
section "home/text.asm", rom0
print::
prints::
; hl: String
; de: Tilemap position
ld a, [hli]
@ -28,7 +28,7 @@ print::
call lcd_blank_wait ; TODO: Really hackish.
ld [de], a
inc de
jr print
jr prints
print_dec_3digit::
; a: Number
@ -14,7 +14,7 @@ main::
ld hl, string_something
bgcoord de, (screen_width - string_something.end + string_something + 1) / 2, 2
call print
call prints
jp _halt_
string_something: db "SOMETHING$"
@ -26,17 +26,17 @@ prog_ezflash_test::
ld hl, string_title
bgcoord de, (screen_width - string_title.end + string_title + 1) / 2, 2
ld hl, string_write
bgcoord de, 2, 5
bgcoord de, 2, 7
ld hl, string_read
bgcoord de, 2, 10
xor a
ld [w_cursor], a
@ -13,7 +13,7 @@ prog_serial_test::
call serial_init_master