1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-12-29 00:06:33 +00:00
oot/linker_scripts/soundfont.ld

21 lines
300 B
Text
Raw Normal View History

OUTPUT_ARCH (mips)
/* Soundfont Linker Script, maps data into rodata and adds a file length symbol */
SECTIONS {
.rodata ALIGN(16) :
{
*(.data*)
*(.rodata*)
. = ALIGN(16);
}
__LEN__ = ABSOLUTE(SIZEOF(.rodata));
/DISCARD/ :
{
*(*);
}
}