forked from Imagelibrary/rtems
Adjust build support files to new directory layout. This patch is a part of the BSP source reorganization. Update #3285.
22 lines
428 B
Plaintext
22 lines
428 B
Plaintext
/* Default values, can be overridden */
|
|
|
|
_PROM_SIZE = DEFINED (_PROM_SIZE) ? _PROM_SIZE : 0;
|
|
|
|
_RAM_SIZE = DEFINED (_RAM_SIZE) ? _RAM_SIZE : 64M;
|
|
|
|
/* these are the maximum values */
|
|
|
|
MEMORY
|
|
{
|
|
rom : ORIGIN = 0xC0000000, LENGTH = 256M
|
|
ram : ORIGIN = 0x00000000, LENGTH = 2048M
|
|
sram : ORIGIN = 0xD0000000, LENGTH = 256M
|
|
}
|
|
|
|
_PROM_START = ORIGIN (rom);
|
|
_RAM_START = ORIGIN (ram);
|
|
|
|
ENTRY(start)
|
|
|
|
INCLUDE linkcmds.base
|