summaryrefslogtreecommitdiff
path: root/agbx/source/priv/init.s
diff options
context:
space:
mode:
Diffstat (limited to 'agbx/source/priv/init.s')
-rw-r--r--agbx/source/priv/init.s4
1 files changed, 2 insertions, 2 deletions
diff --git a/agbx/source/priv/init.s b/agbx/source/priv/init.s
index 1c32c4e..718638d 100644
--- a/agbx/source/priv/init.s
+++ b/agbx/source/priv/init.s
@@ -8,7 +8,7 @@
.thumb
.extern ax_done
-.extern ax_main
+.extern ax_start
.globl __ax_init
@@ -17,7 +17,7 @@
__ax_init:
@ Call main:
- bl ax_main
+ bl ax_start
@ Call done:
bl ax_done @ The return value is already in r0, so there's no need to move it.