mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
fc8d1165c8
* [Audio 9/9] Loose ends * Fix sampleconv memset bug * Doc updates from oot
21 lines
300 B
Plaintext
21 lines
300 B
Plaintext
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/ :
|
|
{
|
|
*(*);
|
|
}
|
|
}
|