mirror of
https://github.com/wiiu-env/haxchi.git
synced 2024-11-16 13:19:16 +01:00
a004e5a3fe
updated installer for this new wupserver version
23 lines
271 B
Plaintext
23 lines
271 B
Plaintext
OUTPUT_ARCH(arm)
|
|
|
|
MEMORY
|
|
{
|
|
RAMX (rx) : ORIGIN = 0x0510E570, LENGTH = 0x00015BC
|
|
RAMRW (rw!i) : ORIGIN = 0x05089780, LENGTH = 0x00001F00
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : {
|
|
build/crt0.o(.init)
|
|
*(.text)
|
|
*(.rodata)
|
|
}
|
|
|
|
.bss : {
|
|
_bss_start = .;
|
|
*(.bss);
|
|
}
|
|
_bss_end = .;
|
|
}
|