Files
raspberrypi/bootloader05/loader
2012-09-13 23:29:06 -04:00

13 lines
135 B
Plaintext

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