From e673fce445ef3145358034f9ea0a38a1a465082e Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 23 Jul 2019 10:28:19 +0200 Subject: [PATCH] bios/boot: fix default EMULATOR_RAM_BASE --- litex/soc/software/bios/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/software/bios/boot.c b/litex/soc/software/bios/boot.c index f68c8e25..2801202a 100644 --- a/litex/soc/software/bios/boot.c +++ b/litex/soc/software/bios/boot.c @@ -229,7 +229,7 @@ static const unsigned char macadr[6] = {0x10, 0xe2, 0xd5, 0x00, 0x00, 0x00}; #define DEVICE_TREE_IMAGE_RAM_OFFSET 0x01000000 #ifndef EMULATOR_RAM_BASE -#define EMULATOR_RAM_BASE 0x50000000 +#define EMULATOR_RAM_BASE 0x20000000 #endif #define EMULATOR_IMAGE_RAM_OFFSET 0x00000000 -- 2.30.2