diff options
author | 2017-10-28 01:28:51 +1100 | |
---|---|---|
committer | 2017-10-28 01:28:51 +1100 | |
commit | 4ac355689eb72027fce7d1b3c3133e9c459a337a (patch) | |
tree | 6282886e6bb58f204e24dbc630f4bfe64f6192b4 | |
parent | 2ae08904db11e0b8b932561bc669fdd2e1fcff04 (diff) |
New Not Working machine: Televideo TS-3000
-rw-r--r-- | scripts/target/mame/mess.lua | 1 | ||||
-rw-r--r-- | src/mame/drivers/ts3000.cpp | 42 | ||||
-rw-r--r-- | src/mame/mame.lst | 3 | ||||
-rw-r--r-- | src/mame/mess.flt | 1 |
4 files changed, 47 insertions, 0 deletions
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index ce5f9ea7534..f1c728958a5 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -3061,6 +3061,7 @@ files { MAME_DIR .. "src/mame/drivers/tv910.cpp", MAME_DIR .. "src/mame/drivers/tv950.cpp", MAME_DIR .. "src/mame/drivers/tv990.cpp", + MAME_DIR .. "src/mame/drivers/ts3000.cpp", } createMESSProjects(_target, _subtarget, "tem") diff --git a/src/mame/drivers/ts3000.cpp b/src/mame/drivers/ts3000.cpp new file mode 100644 index 00000000000..c65364da180 --- /dev/null +++ b/src/mame/drivers/ts3000.cpp @@ -0,0 +1,42 @@ +// license:BSD-3-Clause +// copyright-holders: +/*********************************************************************************************************************************** + +2017-10-28 Skeleton + +Televideo TS-3000. CPU is 8088. Other chips are: 8259, 8253, 8237, 8255, NS8250, uPD765AC, MM58167AN. +Crystals are: 18.432, 16.000, 24.000, 14.31818, 4.7727266. There's a barrel-type backup battery, and a bank of 8 dispswitches. +There are 25-pin serial and parallel ports, and a FDC connector. There's an undumped prom labelled "U20 V1.0" at position U20. + +************************************************************************************************************************************/ + +#include "emu.h" +//#include "cpu/mcs51/mcs51.h" + +class ts3000_state : public driver_device +{ +public: + ts3000_state(const machine_config &mconfig, device_type type, const char *tag) + : driver_device(mconfig, type, tag) +// , maincpu(*this, "maincpu") + { } + +protected: +// required_device<i80c52_device> maincpu; +}; + +static INPUT_PORTS_START( ts3000 ) +INPUT_PORTS_END + +//static ADDRESS_MAP_START( prg_map, AS_PROGRAM, 8, ts3000_state ) +//ADDRESS_MAP_END + +static MACHINE_CONFIG_START( ts3000 ) +MACHINE_CONFIG_END + +ROM_START( ts3000 ) + ROM_REGION( 0x10000, "maincpu", 0 ) + ROM_LOAD( "U25 VER 2.03 BIOS D.u25", 0x0000, 0x4000, CRC(abaff64c) SHA1(b2f0e73d2a25a03d5bac558580919bd0400f4fcf) ) // The D at the end is handwritten +ROM_END + +COMP( 198?, ts3000, 0, 0, ts3000, ts3000, ts3000_state, 0, "Televideo", "TS-3000", MACHINE_IS_SKELETON ) diff --git a/src/mame/mame.lst b/src/mame/mame.lst index 4339e04f974..f884e4dc88a 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -36941,6 +36941,9 @@ ts803h // @source:ts816.cpp ts816 // +@source:ts3000.cpp +ts3000 // Televideo TS-3000 + @source:tsamurai.cpp alphaxz // AZ (c) 1986 Ed/Wood Place ladymstr // A49 (c) 1985 Taito diff --git a/src/mame/mess.flt b/src/mame/mess.flt index 38f654882ea..db0e63b67c9 100644 --- a/src/mame/mess.flt +++ b/src/mame/mess.flt @@ -677,6 +677,7 @@ trs80m2.cpp ts802.cpp ts803.cpp ts816.cpp +ts3000.cpp tsispch.cpp tutor.cpp tv910.cpp |