source: rtems/bsps/sparc/leon2/start/linkcmds.leon2 @ 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: 566 bytes
Line 
1/*  linkcmds
2 */
3
4/* Default values, can be overridden */
5
6_PROM_SIZE = DEFINED (_PROM_SIZE) ? _PROM_SIZE : 2M;
7_PROM_START = DEFINED (_PROM_START) ? _PROM_START : 0x00000000;
8
9_RAM_SIZE = DEFINED (_RAM_SIZE) ? _RAM_SIZE : 4M;
10_RAM_START = DEFINED (_RAM_START) ? _RAM_START : 0x40000000;
11
12/*
13 *  Base address of the on-CPU peripherals
14 */
15
16_LEON_REG = 0x80000000;
17LEON_REG = _LEON_REG;
18
19/* these are the maximum values */
20
21MEMORY
22{
23  rom     : ORIGIN = 0x00000000, LENGTH = 256M
24  ram     : ORIGIN = 0x40000000, LENGTH = 1024M
25}
26
27ENTRY(start)
28
29INCLUDE linkcmds.base
Note: See TracBrowser for help on using the repository browser.