Files

13 lines
355 B
Plaintext
Raw Permalink Normal View History

2025-02-27 17:55:33 -05:00
RAMBASE = 0x81000000;
MEMORY {
extram(ARWX) : ORIGIN = RAMBASE, LENGTH = 64M
}
SECTIONS {
/* All of the sections needed will get passed through to output sections automatically. */
/* Therefore, all that's needed in the sections command is the discards. */
/DISCARD/ : { *(.got) *(.MIPS.abiflags) *(.reginfo) *(.pdr) *(.comment) }
}