mirror of
https://github.com/t-crest/rtems.git
synced 2025-12-25 16:57:56 +00:00
Defined RAM variables (start address, size) in linkcmds file for the Pasim BSP.
This commit is contained in:
@@ -9,14 +9,14 @@ _PROM_SIZE = DEFINED (_PROM_SIZE) ? _PROM_SIZE : 2M;
|
||||
_PROM_START = DEFINED (_PROM_START) ? _PROM_START : 0x00000000;
|
||||
|
||||
_RAM_SIZE = DEFINED (_RAM_SIZE) ? _RAM_SIZE : 4M;
|
||||
_RAM_START = DEFINED (_RAM_START) ? _RAM_START : 0x40000000;
|
||||
_RAM_START = DEFINED (_RAM_START) ? _RAM_START : 0x001C0000;
|
||||
|
||||
/* these are the maximum values */
|
||||
|
||||
MEMORY
|
||||
{
|
||||
rom : ORIGIN = 0x00000000, LENGTH = 256M
|
||||
ram : ORIGIN = 0x40000000, LENGTH = 1024M
|
||||
ram : ORIGIN = 0x001C0000, LENGTH = 4M
|
||||
}
|
||||
|
||||
INCLUDE linkcmds.base
|
||||
|
||||
Reference in New Issue
Block a user