aboutsummaryrefslogtreecommitdiff
path: root/include/hw
diff options
context:
space:
mode:
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2023-06-21 09:53:41 +0100
committerLaurent Vivier <laurent@vivier.eu>2023-06-22 09:24:31 +0200
commit6d32c0643f263da92d24af4c87c86ea2c0f7f251 (patch)
tree37630a18a13c6ab9a734678a93f7fa269dbee1c5 /include/hw
parentf18a2886328d92c617a08692157d2b3f68477548 (diff)
downloadqemu-6d32c0643f263da92d24af4c87c86ea2c0f7f251.zip
qemu-6d32c0643f263da92d24af4c87c86ea2c0f7f251.tar.gz
qemu-6d32c0643f263da92d24af4c87c86ea2c0f7f251.tar.bz2
q800: move VIA1 device to Q800MachineState
Also change the instantiation of the VIA1 device to use object_initialize_child(). Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20230621085353.113233-13-mark.cave-ayland@ilande.co.uk> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'include/hw')
-rw-r--r--include/hw/m68k/q800.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/hw/m68k/q800.h b/include/hw/m68k/q800.h
index 1ed38bf..5cf66d0 100644
--- a/include/hw/m68k/q800.h
+++ b/include/hw/m68k/q800.h
@@ -28,6 +28,7 @@
#include "target/m68k/cpu-qom.h"
#include "exec/memory.h"
#include "hw/m68k/q800-glue.h"
+#include "hw/misc/mac_via.h"
/*
* The main Q800 machine
@@ -39,6 +40,7 @@ struct Q800MachineState {
M68kCPU cpu;
MemoryRegion rom;
GLUEState glue;
+ MOS6522Q800VIA1State via1;
MemoryRegion macio;
MemoryRegion macio_alias;
};