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.s25
1 files changed, 0 insertions, 25 deletions
diff --git a/agbx/source/priv/init.s b/agbx/source/priv/init.s
deleted file mode 100644
index 718638d..0000000
--- a/agbx/source/priv/init.s
+++ /dev/null
@@ -1,25 +0,0 @@
-@ Copyright 2022 Gabriel Jensen.
-@ This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
-@ If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>.
-
-.syntax unified
-
-.cpu arm7tdmi
-.thumb
-
-.extern ax_done
-.extern ax_start
-
-.globl __ax_init
-
-.func
-.thumb_func
-
-__ax_init:
- @ Call main:
- bl ax_start
-
- @ Call done:
- bl ax_done @ The return value is already in r0, so there's no need to move it.
-
-.endfunc