WiiUPluginSystem/wups.ld
Maschell 10c5eccd93 [Example Plugin] Updated the example plugin
- It's now linking with libc/libutils/libdynamiclibs
- moved the main.c into the a "src" folder

[Loader]- Added DCFlushRange and DCInvalidateRange
- Improved logging.

Finally we can load the plugin from the sdcard and call it's function!
2018-02-09 21:31:05 +01:00

29 lines
267 B
Plaintext

SECTIONS {
.wups.meta : {
*(.wups.meta*)
}
.wups.load : {
*(.wups.load*)
}
.text : {
*(.text*)
}
.data : {
*(.data*)
}
.rodata : {
*(.rodata*)
}
.got2 : {
*(.got2*)
}
.sbss : {
*(.sbss*)
}
.bss : {
*(.bss*)
}
/DISCARD/ : {
*(*)
}
}