mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
c2f58c2fa2
Signed-off-by: Peter Delevoryas <peter@pjd.dev> Reviewed-by: Cédric Le Goater <clg@kaod.org> Message-Id: <20220705191400.41632-6-peter@pjd.dev> Signed-off-by: Cédric Le Goater <clg@kaod.org>
40 lines
861 B
C
40 lines
861 B
C
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates. (http://www.meta.com)
|
|
*
|
|
* This code is licensed under the GPL version 2 or later. See the COPYING
|
|
* file in the top-level directory.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "hw/boards.h"
|
|
|
|
#define TYPE_FBY35 MACHINE_TYPE_NAME("fby35")
|
|
OBJECT_DECLARE_SIMPLE_TYPE(Fby35State, FBY35);
|
|
|
|
struct Fby35State {
|
|
MachineState parent_obj;
|
|
};
|
|
|
|
static void fby35_init(MachineState *machine)
|
|
{
|
|
}
|
|
|
|
static void fby35_class_init(ObjectClass *oc, void *data)
|
|
{
|
|
MachineClass *mc = MACHINE_CLASS(oc);
|
|
|
|
mc->desc = "Meta Platforms fby35";
|
|
mc->init = fby35_init;
|
|
}
|
|
|
|
static const TypeInfo fby35_types[] = {
|
|
{
|
|
.name = MACHINE_TYPE_NAME("fby35"),
|
|
.parent = TYPE_MACHINE,
|
|
.class_init = fby35_class_init,
|
|
.instance_size = sizeof(Fby35State),
|
|
},
|
|
};
|
|
|
|
DEFINE_TYPES(fby35_types);
|