(WIIU) forgot to add this file too.

This commit is contained in:
aliaspider 2016-11-05 15:09:37 +01:00
parent d3b3c18a6f
commit 2aa555fb95

32
wiiu/link_ra.ld Normal file
View File

@ -0,0 +1,32 @@
/* Tell linker where our application entry is so the garbage collect can work correct */
ENTRY(__entry_menu);
SECTIONS {
. = 0x00802000;
.text : {
*(.text*);
}
.rodata : {
*(.rodata*);
}
.data : {
*(.data*);
__sdata_start = .;
*(.sdata*);
__sdata_end = .;
__sdata2_start = .;
*(.sdata2*);
__sdata2_end = .;
}
.bss : {
__bss_start = .;
*(.bss*);
*(.sbss*);
*(COMMON);
__bss_end = .;
}
__CODE_END = .;
}