}
QEMUMachine mips_magnum_machine = {
- "magnum",
- "MIPS Magnum",
- mips_magnum_init,
- MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
+ .name = "magnum",
+ .desc = "MIPS Magnum",
+ .init = mips_magnum_init,
+ .ram_require = MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
+ .nodisk_ok = 1,
};
QEMUMachine mips_pica61_machine = {
- "pica61",
- "Acer Pica 61",
- mips_pica61_init,
- MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
+ .name = "pica61",
+ .desc = "Acer Pica 61",
+ .init = mips_pica61_init,
+ .ram_require = MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
+ .nodisk_ok = 1,
};
}
QEMUMachine mips_malta_machine = {
- "malta",
- "MIPS Malta Core LV",
- mips_malta_init,
- VGA_RAM_SIZE + BIOS_SIZE,
+ .name = "malta",
+ .desc = "MIPS Malta Core LV",
+ .init = mips_malta_init,
+ .ram_require = VGA_RAM_SIZE + BIOS_SIZE,
+ .nodisk_ok = 1,
};
}
QEMUMachine mips_mipssim_machine = {
- "mipssim",
- "MIPS MIPSsim platform",
- mips_mipssim_init,
- BIOS_SIZE + VGA_RAM_SIZE /* unused */,
+ .name = "mipssim",
+ .desc = "MIPS MIPSsim platform",
+ .init = mips_mipssim_init,
+ .ram_require = BIOS_SIZE + VGA_RAM_SIZE /* unused */,
+ .nodisk_ok = 1,
};
}
QEMUMachine mips_machine = {
- "mips",
- "mips r4k platform",
- mips_r4k_init,
- VGA_RAM_SIZE + BIOS_SIZE,
+ .name = "mips",
+ .desc = "mips r4k platform",
+ .init = mips_r4k_init,
+ .ram_require = VGA_RAM_SIZE + BIOS_SIZE,
+ .nodisk_ok = 1,
};