diff options
Diffstat (limited to 'agbx/source/priv/init.s')
-rw-r--r-- | agbx/source/priv/init.s | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/agbx/source/priv/init.s b/agbx/source/priv/init.s index b9f1f45..49ada46 100644 --- a/agbx/source/priv/init.s +++ b/agbx/source/priv/init.s @@ -7,19 +7,19 @@ .cpu arm7tdmi .thumb -.extern agbx_done -.extern agbx_main +.extern ax_done +.extern ax_main -.globl __agbx_init +.globl __ax_init .func .thumb_func -__agbx_init: +__ax_init: @ Call main: - bl agbx_main + bl ax_main @ Call done: - bl agbx_done @ The return value is already in r0, so there's no need to move it. + bl ax_done @ The return value is already in r0, so there's no need to move it. .endfunc |