mirror of
https://github.com/encounter/BootCtr9.git
synced 2026-03-30 11:03:49 -07:00
24f9d1987c
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
13 lines
212 B
Plaintext
13 lines
212 B
Plaintext
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
. = 0x23F00000;
|
|
.text.start : { *(.text.start) }
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss COMMON) }
|
|
.rodata : { *(.rodata) }
|
|
. = ALIGN(4);
|
|
}
|
|
|