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.
|
|
|
include "charmap.inc"
|
|
|
|
include "video.inc"
|
|
|
|
|
|
|
|
section "main.asm", rom0
|
|
|
|
|
|
|
|
main::
|
|
|
|
call prog_serial_test
|
|
|
|
call prog_ezflash_test
|
|
|
|
|
|
|
|
call lcd_disable
|
|
|
|
call font_load
|
|
|
|
call pals_set_bw
|
|
|
|
call lcd_enable
|
|
|
|
|
|
|
|
ld hl, string_something
|
|
|
|
bgcoord de, (screen_width - string_something.end + string_something + 1) / 2, 2
|
|
|
|
call prints
|
|
|
|
jp _halt_
|
|
|
|
|
|
|
|
string_something: db "SOMETHING$"
|
|
|
|
.end
|