Add ARM9 exception vectors feature from @TuxSH

This commit is contained in:
Aurora
2016-04-26 22:06:19 +02:00
parent efd08ff731
commit f0e1937eeb
18 changed files with 556 additions and 2 deletions

11
exceptions/arm9/linker.ld Normal file
View File

@@ -0,0 +1,11 @@
ENTRY(_start)
SECTIONS
{
. = 0x01FF8000;
.text.start : { *(.text.start) }
.text : { *(.text) }
.data : { *(.data) }
.bss : { *(.bss COMMON) }
.rodata : { *(.rodata) }
. = ALIGN(4);
}