22 lines
293 B
Plaintext
22 lines
293 B
Plaintext
MEMORY
|
|
{
|
|
flasher (WX) : ORIGIN = 0x10000000, LENGTH = 0x00100000 /* target to load basflash */
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
objs/basflash.o(.text)
|
|
|
|
*(.data)
|
|
*(.bss)
|
|
*(.rodata)
|
|
*(.rodata.*)
|
|
} > flasher
|
|
|
|
/* Memory mapped registers */
|
|
__MBAR = 0xFF000000;
|
|
|
|
}
|