Files

13 lines
134 B
Plaintext

MEMORY
{
ram : ORIGIN = 0x0000, LENGTH = 0x400000
}
SECTIONS
{
.text : { *(.text*) } > ram
.bss : { *(.bss*) } > ram
}