Allow to set custom DTB/OS_CALL addresses

Setting those from command line during compilation allows
to create a custom setup without the need of modifying the
sources.
This commit is contained in:
Mateusz Holenko 2019-07-10 10:38:58 +02:00
parent 28a11976da
commit 423355ecbf
1 changed files with 6 additions and 0 deletions

View File

@ -3,7 +3,13 @@
//#define QEMU
#define SIM
#ifndef OS_CALL
#define OS_CALL 0xC0000000
#endif
#ifndef DTB
#define DTB 0xC3000000
#endif
#endif