Files
raspberrypi/mmu/memmap
2014-11-16 02:58:47 -05:00

13 lines
134 B
Plaintext

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