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