mirror of
https://gitlab.com/kholdfuzion/goldeneye_src
synced 2026-05-23 14:41:54 -04:00
21 lines
340 B
Plaintext
21 lines
340 B
Plaintext
/* Linker script for prop model binary generation */
|
|
/* Base address matches game's prop loading address */
|
|
|
|
SECTIONS
|
|
{
|
|
. = 0x05000000;
|
|
|
|
.data : {
|
|
*(.data)
|
|
*(.data*)
|
|
}
|
|
|
|
/DISCARD/ : {
|
|
*(.reginfo)
|
|
*(.MIPS.abiflags)
|
|
*(.pdr)
|
|
*(.comment)
|
|
*(.gnu.attributes)
|
|
}
|
|
}
|