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 committed by Charles Papon
parent 94f1707d65
commit c8280a9a88
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
} }