Files
raspberrypi/bootloader03/memmap
David Welch b0ebc8d38b adding bootloader03. another xmodem based bootloader, uses a state machine so should be a little
more tolerant of errors (which you shouldnt get anyway).
2012-05-28 10:47:35 -04:00

13 lines
138 B
Plaintext

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