source: rtems/bsps/sparc/leon3/start/linkcmds.gr740 @ 9964895

5
Last change on this file since 9964895 was 9964895, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 08:35:35

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.

  • Property mode set to 100644
File size: 428 bytes
Line 
1/* Default values, can be overridden */
2
3_PROM_SIZE = DEFINED (_PROM_SIZE) ? _PROM_SIZE : 0;
4
5_RAM_SIZE = DEFINED (_RAM_SIZE) ? _RAM_SIZE : 64M;
6
7/* these are the maximum values */
8
9MEMORY
10{
11  rom     : ORIGIN = 0xC0000000, LENGTH = 256M
12  ram     : ORIGIN = 0x00000000, LENGTH = 2048M
13  sram    : ORIGIN = 0xD0000000, LENGTH = 256M
14}
15
16_PROM_START = ORIGIN (rom);
17_RAM_START = ORIGIN (ram);
18
19ENTRY(start)
20
21INCLUDE linkcmds.base
Note: See TracBrowser for help on using the repository browser.