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

13 lines
140 B
Plaintext

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