-
Notifications
You must be signed in to change notification settings - Fork 0
/
crt0.s
34 lines (27 loc) · 1.15 KB
/
crt0.s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@********************************************************************
@* crt0.s *
@* Startup Routine (GAS) *
@* *
@* Copyright (C) 1999-2001 NINTENDO Co.,Ltd. *
@********************************************************************
.INCLUDE "AgbDefine.s"
.INCLUDE "AgbMemoryMap.s"
.INCLUDE "AgbSyscallDefine.s"
.INCLUDE "AgbMacro.s"
.TEXT
.GLOBAL _start
_start:
.INCLUDE "rom_header.s"
@--------------------------------------------------------------------
@- Expand Program -
@--------------------------------------------------------------------
.EXTERN _binary_demo_LZ_bin_start
.GLOBAL start_vector
.CODE 32
start_vector:
ldr r0, =_binary_demo_LZ_bin_start
ldr r1, =CPU_WRAM + 0x100
swi SWI_NO_LZ77_UNCOMP_WRAM << 16 @ bl LZ77UnCompWram
ldr lr, =CPU_WRAM + 0x100
bx lr
.END