diff options
author | Thomas Huth <huth@tuxfamily.org> | 2018-06-30 07:50:23 +0200 |
---|---|---|
committer | Thomas Huth <huth@tuxfamily.org> | 2019-09-07 08:31:33 +0200 |
commit | c8e8bc85a6ba106ad4fd92468f6ef726200ab1ca (patch) | |
tree | 374a6c76974d4bb135824742c275624655624d45 /hw/m68k/Makefile.objs | |
parent | e3355a0ca2d82acc1d65e370284b503e178fa41a (diff) |
m68k: Add NeXTcube keyboard device
It is likely still quite incomplete (e.g. mouse and interrupts are not
implemented yet), but it is good enough for keyboard input at the firmware
monitor.
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-kbd.c
and altered to fit the latest interface of the current QEMU (e.g. to use
memory_region_init_io() instead of cpu_register_physical_memory()).
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190831074519.32613-3-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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/m68k/Makefile.objs b/hw/m68k/Makefile.objs index 482f8477b4..688002cac1 100644 --- a/hw/m68k/Makefile.objs +++ b/hw/m68k/Makefile.objs @@ -1,2 +1,3 @@ obj-$(CONFIG_AN5206) += an5206.o mcf5206.o obj-$(CONFIG_MCF5208) += mcf5208.o mcf_intc.o +obj-$(CONFIG_NEXTCUBE) += next-kbd.o |