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:
Mateusz Holenko 2019-07-10 10:38:38 +02:00
parent 20cbd4012f
commit 28a11976da
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ ENTRY( _start )
MEMORY MEMORY
{ {
ram : ORIGIN = 0x80000000, LENGTH = 64k ram : ORIGIN = DEFINED(__ram_origin) ? __ram_origin : 0x80000000, LENGTH = 64k
} }