mirror of
https://github.com/pret/colosseum-mb.git
synced 2026-03-21 17:34:27 -05:00
41 lines
694 B
Plaintext
41 lines
694 B
Plaintext
SECTIONS {
|
|
. = 0x02000000;
|
|
.text :
|
|
ALIGN(4)
|
|
{
|
|
asm/crt0.o(.text);
|
|
src/main.o(.text);
|
|
asm/libagbsyscall.o(.text);
|
|
*libgcc.a:_call_via_rX.o(.text);
|
|
. += 0x100;
|
|
} =0
|
|
|
|
.rodata :
|
|
ALIGN(4)
|
|
{
|
|
data/payload.o(.rodata);
|
|
. = ALIGN(16);
|
|
src/main.o(.rodata);
|
|
} =0
|
|
bootstrap :
|
|
ALIGN(4)
|
|
{
|
|
asm/iwram.o(.text);
|
|
} =0
|
|
|
|
. = 0x3000000;
|
|
iwram (NOLOAD) :
|
|
ALIGN(4)
|
|
{
|
|
arm_LZ77UnCompWRAM_Buffer = .;
|
|
. += 0x130;
|
|
arm_LZ77UnCompWRAM_FuncStart = .;
|
|
. += 0x94;
|
|
arm_LZ77UnCompWRAM_BufferEnd = .;
|
|
}
|
|
/DISCARD/ :
|
|
{
|
|
*(*);
|
|
}
|
|
}
|