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