bios/boot: rename MM_RAM to EMULATOR_RAM
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Fri, 3 May 2019 17:47:36 +0000 (19:47 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Fri, 3 May 2019 17:47:36 +0000 (19:47 +0200)
litex/soc/software/bios/boot.c

index e3aace911560d8e9af38b14e728531659eb0264e..877b719e59803c485fabccdaeab842aa2dd60c94 100644 (file)
@@ -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);