summary refs log tree commit diff stats
path: root/hw/ppc_newworld.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/ppc_newworld.c')
-rw-r--r--hw/ppc_newworld.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/ppc_newworld.c b/hw/ppc_newworld.c
index 29faa06318..ce35dd9c37 100644
--- a/hw/ppc_newworld.c
+++ b/hw/ppc_newworld.c
@@ -351,9 +351,16 @@ static void ppc_core99_init (ram_addr_t ram_size,
     qemu_register_boot_set(fw_cfg_boot_set, fw_cfg);
 }
 
-QEMUMachine core99_machine = {
+static QEMUMachine core99_machine = {
     .name = "mac99",
     .desc = "Mac99 based PowerMAC",
     .init = ppc_core99_init,
     .max_cpus = MAX_CPUS,
 };
+
+static void core99_machine_init(void)
+{
+    qemu_register_machine(&core99_machine);
+}
+
+machine_init(core99_machine_init);