Files
raspberrypi/gps_clock/memmap
dwelch 0ab9392056 been meaning to make one of these for a long time, this is just the first cut,
already did this with a microcontroller, repeating with a different display and
pi zero.
2015-12-10 17:16:39 -05:00

13 lines
132 B
Plaintext

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