mirror of
https://github.com/wiiu-env/haxchi.git
synced 2024-11-17 05:39:16 +01:00
0ad99123db
-added new config option to haxchi, "sysmenu" which will relaunch you into the system menu with signature, region patches and everything else that cbhc patches -small logic correction in the iosu patcher
21 lines
225 B
Plaintext
21 lines
225 B
Plaintext
OUTPUT_ARCH(arm)
|
|
|
|
MEMORY
|
|
{
|
|
RAMX (rx) : ORIGIN = 0x08135000, LENGTH = 0x000B000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text : ALIGN(0x100) {
|
|
__file_start = .;
|
|
build/crt0.o(.init)
|
|
*(.text)
|
|
}
|
|
.rodata : {
|
|
*(.rodata*)
|
|
__file_end = .;
|
|
}
|
|
}
|
|
|