rom/rom.ld

8 lines
97 B
Plaintext

ENTRY(_start)
SECTIONS {
. = 0x0;
.text : { *(.text) }
/DISCARD/ : { *(.data) *(.bss) }
}