Files
raspberrypi/bootloader07/memmap
dwelch67 3451556310 Felt like doing another intel hex based loader, a little different approach. And modified
the primary serial bootloader (bootloader06) to wait for a specific keypress before running
the downloaded program.
2014-09-20 21:25:33 -04:00

13 lines
132 B
Plaintext

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