summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/s100
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2019-07-22 01:22:40 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2019-07-22 01:22:40 +1000
commit65054fc4f1681ca8b52fe7bde9559a2ffda91968 (patch)
tree785f0d4aaee4c23f802d4e0cfd0bbfb43c151afd /src/devices/bus/s100
parentf2ae7d8207357b89ab23356b6b28d43bc6fb8d59 (diff)
(nw) split binbug into 3 sources.
Diffstat (limited to 'src/devices/bus/s100')
-rw-r--r--src/devices/bus/s100/dg640.cpp172
-rw-r--r--src/devices/bus/s100/dg640.h47
2 files changed, 219 insertions, 0 deletions
diff --git a/src/devices/bus/s100/dg640.cpp b/src/devices/bus/s100/dg640.cpp
new file mode 100644
index 00000000000..18627c97bdf
--- /dev/null
+++ b/src/devices/bus/s100/dg640.cpp
@@ -0,0 +1,172 @@
+// license:BSD-3-Clause
+// copyright-holders:Robbbert
+/***************************************************************************
+
+David Griffiths DG640 board.
+
+It was sold by Applied Technology. It uses a MCM6574 as a character generator.
+The DG640 also supports blinking, reverse-video, and LORES graphics.
+It is a S100 card, also known as ETI-640.
+
+****************************************************************************/
+
+#include "emu.h"
+#include "dg640.h"
+
+#include "emupal.h"
+#include "screen.h"
+
+
+
+DEFINE_DEVICE_TYPE_PRIVATE(S100_DG640, device_s100_card_interface, dg640_device, "dg640", "S100_DG640")
+
+dg640_device::dg640_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)
+ : device_t(mconfig, S100_DG640, tag, owner, clock)
+ , device_s100_card_interface(mconfig, *this)
+ , m_p_chargen(*this, "chargen")
+{}
+
+void dg640_device::device_start()
+{
+ m_p_videoram = make_unique_clear<u8[]>(0x400);
+ save_pointer(NAME(m_p_videoram), 0x400);
+ m_p_attribram = make_unique_clear<u8[]>(0x400);
+ save_pointer(NAME(m_p_attribram), 0x400);
+}
+
+uint32_t dg640_device::screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
+{
+// attributes bit 0 = flash, bit 1 = lores. Also bit 7 of the character = reverse-video (text only).
+ uint8_t y,ra,chr,gfx,attr,inv,gfxbit;
+ uint16_t sy=0,ma=0,x;
+ bool flash;
+ m_framecnt++;
+
+ for (y = 0; y < 16; y++)
+ {
+ for (ra = 0; ra < 16; ra++)
+ {
+ uint16_t *p = &bitmap.pix16(sy++);
+
+ for (x = ma; x < ma + 64; x++)
+ {
+ attr = m_p_attribram[x];
+ chr = m_p_videoram[x];
+ flash = BIT(m_framecnt, 4) & BIT(attr, 0);
+
+ if (BIT(attr, 1)) // lores gfx - can flash
+ {
+ if (flash) chr = 0; // blank part of flashing
+
+ gfxbit = (ra & 0x0c)>>1;
+ /* Display one line of a lores character (8 pixels) */
+ *p++ = BIT(chr, gfxbit);
+ *p++ = BIT(chr, gfxbit);
+ *p++ = BIT(chr, gfxbit);
+ *p++ = BIT(chr, gfxbit);
+ gfxbit++;
+ *p++ = BIT(chr, gfxbit);
+ *p++ = BIT(chr, gfxbit);
+ *p++ = BIT(chr, gfxbit);
+ *p++ = BIT(chr, gfxbit);
+ }
+ else
+ {
+ gfx = 0;
+
+ if (!flash)
+ {
+ inv = BIT(chr, 7) ? 0xff : 0; // text with bit 7 high is reversed
+ chr &= 0x7f;
+ gfx = inv;
+
+ // if g,j,p,q,y; lower the descender
+ if ((chr==0x2c)||(chr==0x3b)||(chr==0x67)||(chr==0x6a)||(chr==0x70)||(chr==0x71)||(chr==0x79))
+ {
+ if (ra > 6)
+ gfx = m_p_chargen[(chr<<4) | (ra-7) ] ^ inv;
+ }
+ else
+ {
+ if ((ra > 3) & (ra < 13))
+ gfx = m_p_chargen[(chr<<4) | (ra-4) ] ^ inv;
+ }
+ }
+
+ /* Display a scanline of a character */
+ *p++ = BIT(gfx, 7);
+ *p++ = BIT(gfx, 6);
+ *p++ = BIT(gfx, 5);
+ *p++ = BIT(gfx, 4);
+ *p++ = BIT(gfx, 3);
+ *p++ = BIT(gfx, 2);
+ *p++ = BIT(gfx, 1);
+ *p++ = BIT(gfx, 0);
+ }
+ }
+ }
+ ma+=64;
+ }
+ return 0;
+}
+
+u8 dg640_device::s100_smemr_r(offs_t offset)
+{
+ if ((offset & 0xfc00) == 0)
+ return m_p_videoram[offset & 0x3ff];
+ else
+ return m_p_attribram[offset & 0x3ff];
+}
+
+void dg640_device::s100_mwrt_w(offs_t offset, u8 data)
+{
+ if ((offset & 0xfc00) == 0)
+ m_p_videoram[offset & 0x3ff] = data;
+ else
+ m_p_attribram[offset & 0x3ff] = data;
+}
+
+
+/* F4 Character Displayer */
+static const gfx_layout dg640_charlayout =
+{
+ 7, 9, /* 7 x 9 characters */
+ 128, /* 128 characters */
+ 1, /* 1 bits per pixel */
+ { 0 }, /* no bitplanes */
+ /* x offsets */
+ { 0, 1, 2, 3, 4, 5, 6 },
+ /* y offsets */
+ { 0*8, 1*8, 2*8, 3*8, 4*8, 5*8, 6*8, 7*8, 8*8 },
+ 8*16 /* every char takes 16 bytes */
+};
+
+static GFXDECODE_START( gfx_dg640 )
+ GFXDECODE_ENTRY( "chargen", 0x0000, dg640_charlayout, 0, 1 )
+GFXDECODE_END
+
+void dg640_device::device_add_mconfig(machine_config &config)
+{
+ screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
+ screen.set_color(rgb_t::amber());
+ screen.set_refresh_hz(50);
+ screen.set_vblank_time(ATTOSECONDS_IN_USEC(2500)); /* not accurate */
+ screen.set_screen_update(FUNC(dg640_device::screen_update));
+ screen.set_size(512, 256);
+ screen.set_visarea(0, 511, 0, 255);
+ screen.set_palette("palette");
+
+ GFXDECODE(config, "gfxdecode", "palette", gfx_dg640);
+ PALETTE(config, "palette", palette_device::MONOCHROME);
+}
+
+ROM_START(dg640)
+ ROM_REGION( 0x0800, "chargen", 0 )
+ ROM_LOAD( "6574.bin", 0x0000, 0x0800, CRC(fd75df4f) SHA1(4d09aae2f933478532b7d3d1a2dee7123d9828ca) )
+ ROM_FILL(0, 16, 0x00)
+ROM_END
+
+const tiny_rom_entry *dg640_device::device_rom_region() const
+{
+ return ROM_NAME(dg640);
+}
diff --git a/src/devices/bus/s100/dg640.h b/src/devices/bus/s100/dg640.h
new file mode 100644
index 00000000000..0ad7dc2e2b0
--- /dev/null
+++ b/src/devices/bus/s100/dg640.h
@@ -0,0 +1,47 @@
+// license:BSD-3-Clause
+// copyright-holders:Robbbert
+/**********************************************************************
+
+ DG640 Video Card
+
+**********************************************************************/
+
+#ifndef MAME_BUS_S100_DG640_H
+#define MAME_BUS_S100_DG640_H
+
+#pragma once
+
+#include "bus/s100/s100.h"
+
+class dg640_device : public device_t, public device_s100_card_interface
+{
+public:
+ // construction/destruction
+ dg640_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
+
+protected:
+ // device-level overrides
+ virtual void device_start() override;
+ virtual void device_add_mconfig(machine_config &config) override;
+ virtual const tiny_rom_entry *device_rom_region() const override;
+
+ // device_s100_card_interface overrides
+ virtual u8 s100_smemr_r(offs_t offset) override;
+ virtual void s100_mwrt_w(offs_t offset, u8 data) override;
+
+private:
+ u32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
+
+ // object finders
+ required_region_ptr<u8> m_p_chargen;
+
+ // internal state
+ std::unique_ptr<u8[]> m_p_videoram;
+ std::unique_ptr<u8[]> m_p_attribram;
+ u8 m_framecnt;
+};
+
+
+DECLARE_DEVICE_TYPE(S100_DG640, device_s100_card_interface)
+
+#endif // MAME_BUS_S100_DG640_H