Files
raspberrypi/video01/loader
2014-01-31 14:50:06 -05:00

13 lines
135 B
Plaintext

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