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
94f1707d65
commit
c8280a9a88
|
@ -4,7 +4,7 @@ ENTRY( _start )
|
||||||
|
|
||||||
MEMORY
|
MEMORY
|
||||||
{
|
{
|
||||||
ram : ORIGIN = 0x80000000, LENGTH = 64k
|
ram : ORIGIN = DEFINED(__ram_origin) ? __ram_origin : 0x80000000, LENGTH = 64k
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue