Files
raspberrypi/bootloader02/memmap
2012-05-28 03:02:17 -04:00

13 lines
138 B
Plaintext

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