Files
raspberrypi/extest/memmap
dwelch 8f9900103f Using the mmu in a much simpler way (sections instead of pages) after doing
the mmu example.

Not sure how this worked before it was set for an address of 0 not 0x8000
2014-11-16 13:58:19 -05:00

13 lines
137 B
Plaintext

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