Files
raspberrypi/blinker06/memmap
2012-06-16 01:29:20 -04:00

13 lines
132 B
Plaintext

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