diff options
author | Thomas Huth <huth@tuxfamily.org> | 2018-06-30 07:19:42 +0200 |
---|---|---|
committer | Thomas Huth <huth@tuxfamily.org> | 2019-09-07 08:30:34 +0200 |
commit | e3355a0ca2d82acc1d65e370284b503e178fa41a (patch) | |
tree | 65f3a153cce8dea5c12c31c901e10c87ef3f5fc3 /hw/display/Makefile.objs | |
parent | 90b1e3afd33226b6078fec6d77a18373712a975c (diff) | |
download | qemu-e3355a0ca2d82acc1d65e370284b503e178fa41a.zip qemu-e3355a0ca2d82acc1d65e370284b503e178fa41a.tar.gz qemu-e3355a0ca2d82acc1d65e370284b503e178fa41a.tar.bz2 |
m68k: Add NeXTcube framebuffer device emulation
The NeXTcube uses a linear framebuffer with 4 greyscale colors and
a fixed resolution of 1120 * 832.
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-fb.c
and altered to fit the latest interface of the current QEMU (e.g.
the device has been "qdev"-ified etc.).
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190831074519.32613-2-huth@tuxfamily.org>
Signed-off-by: Thomas Huth <huth@tuxfamily.org>
Diffstat (limited to 'hw/display/Makefile.objs')
-rw-r--r-- | hw/display/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/display/Makefile.objs b/hw/display/Makefile.objs index 0f11d55..5a40663 100644 --- a/hw/display/Makefile.objs +++ b/hw/display/Makefile.objs @@ -38,6 +38,7 @@ common-obj-$(CONFIG_RASPI) += bcm2835_fb.o common-obj-$(CONFIG_SM501) += sm501.o common-obj-$(CONFIG_TCX) += tcx.o common-obj-$(CONFIG_CG3) += cg3.o +common-obj-$(CONFIG_NEXTCUBE) += next-fb.o obj-$(CONFIG_VGA) += vga.o |