Allow to set custom RAM base address for emulator
This is needed when loading the emulator to RAM with an offset.
This commit is contained in:
parent
20cbd4012f
commit
28a11976da
|
@ -4,7 +4,7 @@ ENTRY( _start )
|
|||
|
||||
MEMORY
|
||||
{
|
||||
ram : ORIGIN = 0x80000000, LENGTH = 64k
|
||||
ram : ORIGIN = DEFINED(__ram_origin) ? __ram_origin : 0x80000000, LENGTH = 64k
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue