
MEMORY
{
    ram  : ORIGIN = 0x20000000, LENGTH = 128M
}

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