Back to home page

LXR

 
 

    


Warning, /bsps/sparc/leon3/start/linkcmds.ut699 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 /* these are the maximum values */
0013 
0014 MEMORY
0015 {
0016   rom     : ORIGIN = 0x00000000, LENGTH = 256M
0017   ram     : ORIGIN = 0x40000000, LENGTH = 1024M
0018 }
0019 
0020 ENTRY(start)
0021 
0022 INCLUDE linkcmds.base