Files
David Welch 259ad3212e This is a bit silly and fun, using an msp430 board, and taking jtag over serial
to debug programs on the raspberry pi.  It is slow but it happens to work
2012-07-07 01:32:59 -04:00

18 lines
345 B
Plaintext

/* memmap */
MEMORY
{
rom : ORIGIN = 0xC000, LENGTH = 0xFFE0-0xC000
ram : ORIGIN = 0x0200, LENGTH = 0x400-0x200
vect : ORIGIN = 0xFFE0, LENGTH = 0x20
}
SECTIONS
{
VECTORS : { startup.o } > vect
.text : { *(.text*) } > rom
.rodata : { *(.rodata*) } > rom
.data : { *(.data*) } > ram
.bss : { *(.bss*) } > ram
}