diff options
author | Thomas Huth | 2018-06-30 08:45:25 +0200 |
---|---|---|
committer | Thomas Huth | 2019-09-07 08:31:51 +0200 |
commit | 956a78118bfc7fa512b03cbe8a77b9384c6d89f4 (patch) | |
tree | 1c181972c4c30632586eddeb58d850abea5ea624 /hw/m68k/Makefile.objs | |
parent | m68k: Add NeXTcube keyboard device (diff) | |
download | qemu-956a78118bfc7fa512b03cbe8a77b9384c6d89f4.tar.gz qemu-956a78118bfc7fa512b03cbe8a77b9384c6d89f4.tar.xz qemu-956a78118bfc7fa512b03cbe8a77b9384c6d89f4.zip |
m68k: Add NeXTcube machine
It is still quite incomplete (no SCSI, no floppy emulation, no network,
etc.), but the firmware already shows up the debug monitor prompt in the
framebuffer display, so at least the very basics are already working.
This code has been taken from Bryce Lanham's GSoC 2011 NeXT branch at
https://github.com/blanham/qemu-NeXT/blob/next-cube/hw/next-cube.c
and altered quite a bit to fit the latest interface and coding conventions
of the current QEMU.
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190831074519.32613-4-huth@tuxfamily.org>
Signed-off-by: Thomas Huth <huth@tuxfamily.org>
Diffstat (limited to 'hw/m68k/Makefile.objs')
-rw-r--r-- | hw/m68k/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/m68k/Makefile.objs b/hw/m68k/Makefile.objs index 688002cac1..f25854730d 100644 --- a/hw/m68k/Makefile.objs +++ b/hw/m68k/Makefile.objs @@ -1,3 +1,3 @@ obj-$(CONFIG_AN5206) += an5206.o mcf5206.o obj-$(CONFIG_MCF5208) += mcf5208.o mcf_intc.o -obj-$(CONFIG_NEXTCUBE) += next-kbd.o +obj-$(CONFIG_NEXTCUBE) += next-kbd.o next-cube.o |