4 * Copyright IBM, Corp. 2012
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
14 #include "qemu-common.h"
16 #include "hw/boards.h"
18 static void machine_none_init(QEMUMachineInitArgs *args)
22 static QEMUMachine machine_none = {
24 .desc = "empty machine",
25 .init = machine_none_init,
29 static void register_machines(void)
31 qemu_register_machine(&machine_none);
34 machine_init(register_machines);