4 * Copyright (C) 2014 Red Hat Inc
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.
13 #include "hw/boards.h"
15 static const TypeInfo machine_info = {
17 .parent = TYPE_OBJECT,
19 .class_size = sizeof(MachineClass),
20 .instance_size = sizeof(MachineState),
23 static void machine_register_types(void)
25 type_register_static(&machine_info);
28 type_init(machine_register_types)