Back to home page

LXR

 
 

    


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

0001 /* Default values, can be overridden */
0002 
0003 _PROM_SIZE = DEFINED (_PROM_SIZE) ? _PROM_SIZE : 0;
0004 
0005 _RAM_SIZE = DEFINED (_RAM_SIZE) ? _RAM_SIZE : 64M;
0006 
0007 /* these are the maximum values */
0008 
0009 MEMORY
0010 {
0011   rom     : ORIGIN = 0xC0000000, LENGTH = 256M
0012   ram     : ORIGIN = 0x00000000, LENGTH = 2048M
0013   sram    : ORIGIN = 0xD0000000, LENGTH = 256M
0014 }
0015 
0016 _PROM_START = ORIGIN (rom);
0017 _RAM_START = ORIGIN (ram);
0018 
0019 ENTRY(start)
0020 
0021 INCLUDE linkcmds.base