source: rtems/c/src/lib/libbsp/sparc/leon2/startup/linkcmds @ 8d830fae

4.115
Last change on this file since 8d830fae was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

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