mirror of
https://github.com/wiiu-env/haxchi.git
synced 2024-11-16 21:29:17 +01:00
17 lines
157 B
Plaintext
17 lines
157 B
Plaintext
|
OUTPUT_ARCH(arm)
|
||
|
|
||
|
MEMORY
|
||
|
{
|
||
|
RAMX (rx) : ORIGIN = 0x0510D9AC, LENGTH = 0x0000110
|
||
|
}
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text : {
|
||
|
build/crt0.o(.init)
|
||
|
*(.text)
|
||
|
*(.rodata)
|
||
|
}
|
||
|
}
|
||
|
|