mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 20:19:44 +00:00
hw/mips/fuloong2e: Move code and update a comment
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>
This commit is contained in:
parent
1f8a6c8b3c
commit
3e5fe8dd1f
@ -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);
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user