diff options
author | Martmists <mail@martmists.com> | 2020-04-26 17:49:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-26 17:49:13 +0200 |
commit | daf2b831efe688dd9ee55f549d00a33c16e840ba (patch) | |
tree | bdb1765edc0c10ec83f02ded9e9c478d01e241a4 /arm9/asm/SDK_AUTOLOAD_LIST.s | |
parent | f11bca0db09b9e7f7514f5033fe6c31b6efd05e2 (diff) | |
parent | eb0b544c0678a0e601686fc32b6019b4e893d5f9 (diff) |
Merge pull request #27 from PikalaxALT/pikalax_work
Separate build structures for ARM9 and ARM7
Diffstat (limited to 'arm9/asm/SDK_AUTOLOAD_LIST.s')
-rw-r--r-- | arm9/asm/SDK_AUTOLOAD_LIST.s | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/arm9/asm/SDK_AUTOLOAD_LIST.s b/arm9/asm/SDK_AUTOLOAD_LIST.s new file mode 100644 index 00000000..a2d1d5fe --- /dev/null +++ b/arm9/asm/SDK_AUTOLOAD_LIST.s @@ -0,0 +1,21 @@ + .include "asm/macros.inc" + .include "global.inc" + .section .data + + .global SDK_AUTOLOAD_LIST +SDK_AUTOLOAD_LIST: ; 0x02107700 + .word SDK_AUTOLOAD_ITCM_START + .word 0x00000700 + .word 0x00000000 + + .word SDK_AUTOLOAD_DTCM_START + .word 0x00000060 + .word 0x00000020 + + .word 0x02400000 + .word 0x00000000 + .word 0x00000000 + + .global SDK_AUTOLOAD_LIST_END +SDK_AUTOLOAD_LIST_END: + |