Files
raspberrypi/newlib0/memmap
2012-10-23 01:06:49 -04:00

13 lines
133 B
Plaintext

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