summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-06-22 19:49:01 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-06-22 19:49:01 -0400
commitbf72a3ae51f4a4d8a4ee910c9e056bb2fd011078 (patch)
treee4b30fa530c3f17bc686b2183d64bceb8b59434a
parente73cf96fbd9c2c5d3b8db4c31f5879cc74e68c14 (diff)
New machines marked as NOT_WORKING
---------------------------------- Telex 1192 [Bitsavers]
-rw-r--r--scripts/target/mame/mess.lua1
-rw-r--r--src/mame/drivers/telex1192.cpp70
-rw-r--r--src/mame/mame.lst3
-rw-r--r--src/mame/mess.flt1
4 files changed, 75 insertions, 0 deletions
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua
index 4e4054e2b89..12d7d59afea 100644
--- a/scripts/target/mame/mess.lua
+++ b/scripts/target/mame/mess.lua
@@ -4055,6 +4055,7 @@ files {
MAME_DIR .. "src/mame/drivers/tasc.cpp",
MAME_DIR .. "src/mame/drivers/tavernie.cpp",
MAME_DIR .. "src/mame/drivers/tecnbras.cpp",
+ MAME_DIR .. "src/mame/drivers/telex1192.cpp",
MAME_DIR .. "src/mame/drivers/telex274.cpp",
MAME_DIR .. "src/mame/drivers/telex277d.cpp",
MAME_DIR .. "src/mame/drivers/terak.cpp",
diff --git a/src/mame/drivers/telex1192.cpp b/src/mame/drivers/telex1192.cpp
new file mode 100644
index 00000000000..f3e6a255cc0
--- /dev/null
+++ b/src/mame/drivers/telex1192.cpp
@@ -0,0 +1,70 @@
+// license:BSD-3-Clause
+// copyright-holders:AJR
+/************************************************************************************************************
+
+ Skeleton driver for Memorex Telex 1192 IBM-compatible video display terminal.
+
+************************************************************************************************************/
+
+#include "emu.h"
+#include "cpu/bcp/dp8344.h"
+//#include "machine/nvram.h"
+//#include "screen.h"
+
+class telex1192_state : public driver_device
+{
+public:
+ telex1192_state(const machine_config &mconfig, device_type type, const char *tag)
+ : driver_device(mconfig, type, tag)
+ , m_bcp(*this, "bcp")
+ , m_chargen(*this, "chargen")
+ {
+ }
+
+ void telex1192(machine_config &config);
+
+private:
+ void inst_map(address_map &map);
+ void data_map(address_map &map);
+
+ required_device<dp8344_device> m_bcp;
+ required_region_ptr<u8> m_chargen;
+};
+
+
+void telex1192_state::inst_map(address_map &map)
+{
+ map(0x0000, 0x1fff).rom().region("program", 0);
+}
+
+void telex1192_state::data_map(address_map &map)
+{
+}
+
+
+static INPUT_PORTS_START(telex1192)
+INPUT_PORTS_END
+
+
+void telex1192_state::telex1192(machine_config &config)
+{
+ DP8344(config, m_bcp, 18.8696_MHz_XTAL);
+ m_bcp->set_addrmap(AS_PROGRAM, &telex1192_state::inst_map);
+ m_bcp->set_addrmap(AS_DATA, &telex1192_state::data_map);
+}
+
+
+// XTALs: 18.8696 (Y1), 6.1440 MHz (Y2), 46.2 MHz (Y3), 24.8443 MHz (Y4), 28.3046 MHz (Y5), 40.993430 MHz (Y6)
+// CPU: NS DP8344AV BCP
+// Gate array: Toshiba TC110G17AT
+// RAM: 3x Motorola MCM6264P45, Toshiba TC55257APL-10, Dallas DS1220Y-150
+ROM_START(telex1192)
+ ROM_REGION16_LE(0x4000, "program", 0)
+ ROM_LOAD16_BYTE("206252-003.u7", 0x0000, 0x2000, CRC(3632b762) SHA1(a45dbcd96485ad87c60257e95dc58f31d1e4ddee))
+ ROM_LOAD16_BYTE("206251-003.u8", 0x0001, 0x2000, CRC(2852d830) SHA1(947612957daa441596a547f23c526d20306e6e0d))
+
+ ROM_REGION(0x10000, "chargen", 0)
+ ROM_LOAD("206253-003.u6", 0x00000, 0x10000, CRC(8d7d9356) SHA1(0b2eda8b04b2a6651f4fbf4cd6cdd129a70110ee))
+ROM_END
+
+COMP(1989, telex1192, 0, 0, telex1192, telex1192, telex1192_state, empty_init, "Memorex Telex", "Telex 1192", MACHINE_IS_SKELETON)
diff --git a/src/mame/mame.lst b/src/mame/mame.lst
index fa039a20006..cdecb4d0ed7 100644
--- a/src/mame/mame.lst
+++ b/src/mame/mame.lst
@@ -37668,6 +37668,9 @@ tek4404 // (c) 1984 Tektronix
@source:tekxp33x.cpp
tekxp330 //
+@source:telex1192.cpp
+telex1192 //
+
@source:telex274.cpp
telex274 //
diff --git a/src/mame/mess.flt b/src/mame/mess.flt
index 94a688dec0f..51aea0b02b8 100644
--- a/src/mame/mess.flt
+++ b/src/mame/mess.flt
@@ -785,6 +785,7 @@ tek405x.cpp
tek410x.cpp
tek440x.cpp
tekxp33x.cpp
+telex1192.cpp
telex274.cpp
telex277d.cpp
terak.cpp