
MEMORY
{
    ram : ORIGIN = 0x00100000, LENGTH = 0x20000
}

SECTIONS
{
    .text : { *(.text*) } > ram
    .bss : { *(.bss*) } > ram
}

