summaryrefslogblamecommitdiff
path: root/agbx/source/priv/init.s
blob: 1c32c4eda93c40e8b35805d9298e9b2467c4e887 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                                      
                                                                                                               





               

               
 
                

     

           
          
                    
                  

                    
                                                                                      

        
@ 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_main

.globl __ax_init

.func
.thumb_func

__ax_init:
	@ Call main:
	bl ax_main

	@ Call done:
	bl ax_done @ The return value is already in r0, so there's no need to move it.

.endfunc