The following changes since commit 67fe6ae41da64368bc4936b196fee2bf61f8c720:
Merge tag 'pull-tricore-20230621-1' of https://github.com/bkoppelmann/qemu into staging (2023-06-21 20:08:48 +0200) are available in the Git repository at: https://github.com/vivier/qemu-m68k.git tags/q800-for-8.1-pull-request for you to fetch changes up to 532009054b45d75a3cf7ba9c31921add669d290d: mac_via: fix rtc command decoding for the PRAM seconds registers (2023-06-22 09:31:18 +0200) ---------------------------------------------------------------- Q800 branch pull request 20230622 Cleanup to introduce support of MacOS Classic ---------------------------------------------------------------- Mark Cave-Ayland (24): q800: fix up minor spacing issues in hw_compat_q800 GlobalProperty array q800: add missing space after parent object in GLUEState q800: introduce Q800MachineState q800: rename q800_init() to q800_machine_init() q800: move CPU object into Q800MachineState q800: move ROM memory region to Q800MachineState q800: move GLUE device into separate q800-glue.c file q800-glue.c: switch TypeInfo registration to use DEFINE_TYPES() macro q800: move GLUE device to Q800MachineState q800: introduce mac-io container memory region q800: reimplement mac-io region aliasing using IO memory region q800: move VIA1 device to Q800MachineState q800: move VIA2 device to Q800MachineState hw/net/dp8393x.c: move TYPE_DP8393X and dp8393xState into dp8393x.h q800: move dp8393x device to Q800MachineState q800: move ESCC device to Q800MachineState q800: move escc_orgate device to Q800MachineState q800: move ESP device to Q800MachineState q800: move SWIM device to Q800MachineState q800: move mac-nubus-bridge device to Q800MachineState q800: don't access Nubus bus directly from the mac-nubus-bridge device q800: move macfb device to Q800MachineState mac_via: fix rtc command decoding from PRAM addresses 0x0 to 0xf mac_via: fix rtc command decoding for the PRAM seconds registers MAINTAINERS | 3 + include/hw/m68k/q800-glue.h | 50 ++++ include/hw/m68k/q800.h | 66 +++++ include/hw/net/dp8393x.h | 60 ++++ hw/m68k/q800-glue.c | 249 +++++++++++++++++ hw/m68k/q800.c | 526 ++++++++++++++---------------------- hw/misc/mac_via.c | 13 +- hw/net/dp8393x.c | 32 +-- hw/m68k/meson.build | 2 +- 9 files changed, 635 insertions(+), 366 deletions(-) create mode 100644 include/hw/m68k/q800-glue.h create mode 100644 include/hw/m68k/q800.h create mode 100644 include/hw/net/dp8393x.h create mode 100644 hw/m68k/q800-glue.c -- 2.40.1