hw/mips/fuloong2e: Move code and update a comment
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Sun, 26 Apr 2020 10:19:16 +0000 (12:19 +0200)
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>
Tue, 26 May 2020 11:20:37 +0000 (13:20 +0200)
Move the RAM-related call closer to the RAM creation block,
rename the ROM comment.

Reviewed-by: Huacai Chen <chenhc@lemote.com>
Message-id: <20200510210128.18343-4-f4bug@amsat.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
hw/mips/mips_fulong2e.c

index 05b9efa516cf13e522d4d663a4a99c0acfacc8ab..6996f5e3d16b9892f0f906323bdb4849c27c620c 100644 (file)
@@ -315,12 +315,11 @@ static void mips_fulong2e_init(MachineState *machine)
         error_report("Invalid RAM size, should be 256MB");
         exit(EXIT_FAILURE);
     }
+    memory_region_add_subregion(address_space_mem, 0, machine->ram);
 
-    /* allocate RAM */
+    /* Boot ROM */
     memory_region_init_rom(bios, NULL, "fulong2e.bios", BIOS_SIZE,
                            &error_fatal);
-
-    memory_region_add_subregion(address_space_mem, 0, machine->ram);
     memory_region_add_subregion(address_space_mem, 0x1fc00000LL, bios);
 
     /*