From 1ba1ad9a001648c392a46d4b08e5a639f638b824 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 3 May 2019 19:47:36 +0200 Subject: [PATCH] bios/boot: rename MM_RAM to EMULATOR_RAM --- litex/soc/software/bios/boot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litex/soc/software/bios/boot.c b/litex/soc/software/bios/boot.c index e3aace91..877b719e 100644 --- a/litex/soc/software/bios/boot.c +++ b/litex/soc/software/bios/boot.c @@ -281,14 +281,14 @@ void netboot(void) return; } - tftp_dst_addr = MM_RAM_BASE; + tftp_dst_addr = EMULATOR_RAM_BASE; size = tftp_get_v(ip, tftp_port, "emulator.bin", (void *)tftp_dst_addr); if(size <= 0) { printf("No emulator.bin found\n"); return; } - boot(0, 0, 0, MM_RAM_BASE); + boot(0, 0, 0, EMULATOR_RAM_BASE); #else tftp_dst_addr = MAIN_RAM_BASE; size = tftp_get_v(ip, tftp_port, "boot.bin", (void *)tftp_dst_addr); -- 2.30.2