mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 21:28:22 +00:00
37 lines
820 B
C
37 lines
820 B
C
|
/*
|
||
|
* QEMU Machine
|
||
|
*
|
||
|
* Copyright (C) 2014 Red Hat Inc
|
||
|
*
|
||
|
* Authors:
|
||
|
* Marcel Apfelbaum <marcel.a@redhat.com>
|
||
|
*
|
||
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||
|
* See the COPYING file in the top-level directory.
|
||
|
*/
|
||
|
|
||
|
#include "hw/boards.h"
|
||
|
|
||
|
static void machine_initfn(struct uc_struct *uc, Object *obj, void *opaque)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static void machine_finalize(struct uc_struct *uc, Object *obj, void *opaque)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static const TypeInfo machine_info = {
|
||
|
.name = TYPE_MACHINE,
|
||
|
.parent = TYPE_OBJECT,
|
||
|
.abstract = true,
|
||
|
.class_size = sizeof(MachineClass),
|
||
|
.instance_size = sizeof(MachineState),
|
||
|
.instance_init = machine_initfn,
|
||
|
.instance_finalize = machine_finalize,
|
||
|
};
|
||
|
|
||
|
void machine_register_types(struct uc_struct *uc)
|
||
|
{
|
||
|
type_register_static(uc, &machine_info);
|
||
|
}
|