Files
raspberrypi/bootloader04/loader

13 lines
136 B
Plaintext

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