Revision eec2743e

b/hw/mips_jazz.c
273 273
}
274 274

  
275 275
QEMUMachine mips_magnum_machine = {
276
    "magnum",
277
    "MIPS Magnum",
278
    mips_magnum_init,
279
    MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
276
    .name = "magnum",
277
    .desc = "MIPS Magnum",
278
    .init = mips_magnum_init,
279
    .ram_require = MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
280
    .nodisk_ok = 1,
280 281
};
281 282

  
282 283
QEMUMachine mips_pica61_machine = {
283
    "pica61",
284
    "Acer Pica 61",
285
    mips_pica61_init,
286
    MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
284
    .name = "pica61",
285
    .desc = "Acer Pica 61",
286
    .init = mips_pica61_init,
287
    .ram_require = MAGNUM_BIOS_SIZE + VGA_RAM_SIZE,
288
    .nodisk_ok = 1,
287 289
};
b/hw/mips_malta.c
946 946
}
947 947

  
948 948
QEMUMachine mips_malta_machine = {
949
    "malta",
950
    "MIPS Malta Core LV",
951
    mips_malta_init,
952
    VGA_RAM_SIZE + BIOS_SIZE,
949
    .name = "malta",
950
    .desc = "MIPS Malta Core LV",
951
    .init = mips_malta_init,
952
    .ram_require = VGA_RAM_SIZE + BIOS_SIZE,
953
    .nodisk_ok = 1,
953 954
};
b/hw/mips_mipssim.c
191 191
}
192 192

  
193 193
QEMUMachine mips_mipssim_machine = {
194
    "mipssim",
195
    "MIPS MIPSsim platform",
196
    mips_mipssim_init,
197
    BIOS_SIZE + VGA_RAM_SIZE /* unused */,
194
    .name = "mipssim",
195
    .desc = "MIPS MIPSsim platform",
196
    .init = mips_mipssim_init,
197
    .ram_require = BIOS_SIZE + VGA_RAM_SIZE /* unused */,
198
    .nodisk_ok = 1,
198 199
};
b/hw/mips_r4k.c
283 283
}
284 284

  
285 285
QEMUMachine mips_machine = {
286
    "mips",
287
    "mips r4k platform",
288
    mips_r4k_init,
289
    VGA_RAM_SIZE + BIOS_SIZE,
286
    .name = "mips",
287
    .desc = "mips r4k platform",
288
    .init = mips_r4k_init,
289
    .ram_require = VGA_RAM_SIZE + BIOS_SIZE,
290
    .nodisk_ok = 1,
290 291
};

Also available in: Unified diff