mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 02:24:58 -06:00
ppc: introduce Core99MachinesState for the mac99 machine
This is in preparation for adding configuration controlled via machine options. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
2c9dfdacc5
commit
06fe3a5bf1
2 changed files with 18 additions and 0 deletions
11
hw/ppc/mac.h
11
hw/ppc/mac.h
|
@ -27,6 +27,7 @@
|
|||
#define PPC_MAC_H
|
||||
|
||||
#include "exec/memory.h"
|
||||
#include "hw/boards.h"
|
||||
#include "hw/sysbus.h"
|
||||
#include "hw/ide/internal.h"
|
||||
#include "hw/input/adb.h"
|
||||
|
@ -65,6 +66,16 @@
|
|||
#define NEWWORLD_IDE1_IRQ 0xe
|
||||
#define NEWWORLD_IDE1_DMA_IRQ 0x3
|
||||
|
||||
/* Core99 machine */
|
||||
#define TYPE_CORE99_MACHINE MACHINE_TYPE_NAME("mac99")
|
||||
#define CORE99_MACHINE(obj) OBJECT_CHECK(Core99MachineState, (obj), \
|
||||
TYPE_CORE99_MACHINE)
|
||||
|
||||
typedef struct Core99MachineState {
|
||||
/*< private >*/
|
||||
MachineState parent;
|
||||
} Core99MachineState;
|
||||
|
||||
/* MacIO */
|
||||
#define TYPE_MACIO_IDE "macio-ide"
|
||||
#define MACIO_IDE(obj) OBJECT_CHECK(MACIOIDEState, (obj), TYPE_MACIO_IDE)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue