mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
9 lines
177 B
Plaintext
9 lines
177 B
Plaintext
SECTIONS
|
|
{
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) *(COMMON) }
|
|
.note : { *(.note) }
|
|
/DISCARD/ : { *(.reginfo) *(.MIPS.abiflags) *(.trampolines) }
|
|
}
|