Files
rtems/bsps/sparc/leon3/start/linkcmds.gr740
Sebastian Huber 9964895866 bsps: Move startup files to bsps
Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-20 13:52:14 +02:00

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