Tom,
Ver 8.1
MPC 565
Linker command file.
/* linker command file for CMD-565 board, debug version - runs from */
/* external SRAM (2MByte) */
MEMORY {
rom : org = 0x00000000 len = 0x00200000 // external RAM used for debbuging
ram : org = 0x003F7000 len = 0x9000 // internal RAM
}
/* We use FORCEACTIVE so that the linker will not deadstrip
the exception table gExceptionTable. */
FORCEACTIVE { gExceptionTable }
SECTIONS {
.reset : { } > rom
.init : {} > rom
GROUP : {
.text (TEXT) : {}
.rodata (CONST) : {
*(.rdata)
*(.rodata)
}
.ctors : {}
.dtors : {}
extab : {}
extabindex : {}
.eirtable ALIGN(2048) : {}
} > rom
GROUP : {
.data : {}
.sdata : {}
.sbss : {}
.sdata2 :{}
.sbss2 : {}
.bss : {}
.PPC.EMB.sdata0 : {}
.PPC.EMB.sbss0 : {}
} > ram
}
This file came with quick start.
Used default directory
Thanks
Michael