mirror of
https://github.com/wiiu-env/haxchi.git
synced 2024-11-10 02:15:08 +01:00
19 lines
187 B
Plaintext
19 lines
187 B
Plaintext
OUTPUT_ARCH(arm)
|
|
|
|
MEMORY
|
|
{
|
|
RAMX (rx) : ORIGIN = 0x08134100, LENGTH = 0x000BF00
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : ALIGN(0x100) {
|
|
build/crt0.o(.init)
|
|
*(.text)
|
|
}
|
|
.rodata : {
|
|
*(.rodata*)
|
|
}
|
|
}
|
|
|