Back to home page

LXR

 
 

    


Warning, /bsps/sparc/leon2/start/linkcmds.leon2 is written in an unsupported language. File is not indexed.

0001 /*  linkcmds
0002  */
0003 
0004 /* Default values, can be overridden */
0005 
0006 _PROM_SIZE = DEFINED (_PROM_SIZE) ? _PROM_SIZE : 2M;
0007 _PROM_START = DEFINED (_PROM_START) ? _PROM_START : 0x00000000;
0008 
0009 _RAM_SIZE = DEFINED (_RAM_SIZE) ? _RAM_SIZE : 4M;
0010 _RAM_START = DEFINED (_RAM_START) ? _RAM_START : 0x40000000;
0011 
0012 /*
0013  *  Base address of the on-CPU peripherals
0014  */
0015 
0016 _LEON_REG = 0x80000000;
0017 LEON_REG = _LEON_REG;
0018 
0019 /* these are the maximum values */
0020 
0021 MEMORY
0022 {
0023   rom     : ORIGIN = 0x00000000, LENGTH = 256M
0024   ram     : ORIGIN = 0x40000000, LENGTH = 1024M
0025 }
0026 
0027 ENTRY(start)
0028 
0029 INCLUDE linkcmds.base