From: Florent Kermarrec Date: Fri, 3 May 2019 17:47:36 +0000 (+0200) Subject: bios/boot: rename MM_RAM to EMULATOR_RAM X-Git-Tag: 24jan2021_ls180~1241 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ba1ad9a001648c392a46d4b08e5a639f638b824;p=litex.git bios/boot: rename MM_RAM to EMULATOR_RAM --- 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);