source: rtems/c/src/lib/libbsp/sparc/leon3/startup/linkcmds.ngmp @ 12cbc37

4.115
Last change on this file since 12cbc37 was 12cbc37, checked in by Sebastian Huber <sebastian.huber@…>, on 11/12/13 at 09:29:50

bsp/ngmp: New BSP variant

  • Property mode set to 100644
File size: 414 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
19INCLUDE linkcmds.base
Note: See TracBrowser for help on using the repository browser.