mirror of
https://github.com/wiiu-env/MochaPayload.git
synced 2024-11-10 02:05:08 +01:00
24 lines
240 B
Plaintext
24 lines
240 B
Plaintext
|
OUTPUT_ARCH(arm)
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text 0x05116000 : {
|
||
|
_text_start = .;
|
||
|
build/crt0.o(.init)
|
||
|
*(.text*)
|
||
|
*(.rodata*)
|
||
|
}
|
||
|
_text_end = .;
|
||
|
|
||
|
.bss 0x050BD000 : {
|
||
|
_bss_start = .;
|
||
|
*(.bss*);
|
||
|
}
|
||
|
_bss_end = .;
|
||
|
|
||
|
/DISCARD/ : {
|
||
|
*(*);
|
||
|
}
|
||
|
}
|
||
|
|