Files
Alexander Hartmann 24f9d1987c updates fatfs lib to a newer version, modified start.s and stub.ld files
to fix a sd usage problem, added support to read the config file from a
folder called arm9loaderhax added support for creating the log file in
this folder, added some more debug output
2016-02-26 01:46:23 +01:00

13 lines
212 B
Plaintext

ENTRY(_start)
SECTIONS
{
. = 0x23F00000;
.text.start : { *(.text.start) }
.text : { *(.text) }
.data : { *(.data) }
.bss : { *(.bss COMMON) }
.rodata : { *(.rodata) }
. = ALIGN(4);
}