summaryrefslogtreecommitdiff
path: root/demo/hdr.s
diff options
context:
space:
mode:
Diffstat (limited to 'demo/hdr.s')
-rw-r--r--demo/hdr.s6
1 files changed, 3 insertions, 3 deletions
diff --git a/demo/hdr.s b/demo/hdr.s
index 4ea82d3..508ea2f 100644
--- a/demo/hdr.s
+++ b/demo/hdr.s
@@ -1,15 +1,15 @@
-.extern __agbx_init
+.extern __ax_init
@ AGB IMAGE HEADER
@ ... through the courtesy of <https://problemkaputt.de/gbatek-gba-cartridge-header.htm>.
@ Please read this thoroughly, as to make sure to cater it to your own program.
@ Image entry point (4)
-@ 32-bit ARM instruction that serves as the entry point of the image, which usually is a branch instruction. Must be "b __agbx_init" if agbx is used.
+@ 32-bit ARM instruction that serves as the entry point of the image, which usually is a branch instruction. Must be "b __ax_init" if agbx is used.
.ARM
.global _start
_start: @ We define this label to stop the linker from complaining
- b __agbx_init
+ b __ax_init
@ Nintendo logo (156)
@ Must be equal to the following memory sequence. The bootloader locks up if it determines that this is not the case.