Files
raspberrypi/bootloader03/memmap
T
2012-05-28 10:47:35 -04:00

13 lines
138 B
Plaintext

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