Files
raspberrypi/bootloader01/loader
2012-05-27 02:31:05 -04:00

13 lines
140 B
Plaintext

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