Some shit software I was messing with on gb
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
394 B

4 years ago
include "charmap.inc"
include "video.inc"
section "main.asm", rom0
main::
call prog_serial_test
call prog_ezflash_test
4 years ago
call lcd_disable
call font_load
call pals_set_bw
4 years ago
call lcd_enable
4 years ago
ld hl, string_something
bgcoord de, (screen_width - string_something.end + string_something + 1) / 2, 2
call prints
jp _halt_
4 years ago
string_something: db "SOMETHING$"
.end