summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wyse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/wyse.cpp')
-rw-r--r--src/mame/drivers/wyse.cpp44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/mame/drivers/wyse.cpp b/src/mame/drivers/wyse.cpp
new file mode 100644
index 00000000000..41774221865
--- /dev/null
+++ b/src/mame/drivers/wyse.cpp
@@ -0,0 +1,44 @@
+// license:BSD-3-Clause
+// copyright-holders:
+/***********************************************************************************************************************************
+
+2017-10-27 Skeleton
+
+Wyse is a well-known maker of terminals. It is presumed this is one of them.
+
+************************************************************************************************************************************/
+
+#include "emu.h"
+//#include "cpu/mcs51/mcs51.h"
+
+class wyse_state : public driver_device
+{
+public:
+ wyse_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( wyse )
+INPUT_PORTS_END
+
+//static ADDRESS_MAP_START( prg_map, AS_PROGRAM, 8, wyse_state )
+//ADDRESS_MAP_END
+
+static MACHINE_CONFIG_START( wyse )
+MACHINE_CONFIG_END
+
+ROM_START( wyse )
+ ROM_REGION( 0x10000, "maincpu", 0 )
+ // unknown terminal (1984)
+ ROM_LOAD( "wyse_2201b.bin", 0x000000, 0x001000, CRC(ee318814) SHA1(0ac64b60ff978e607a087e9e6f4d547811c015c5) ) // chargen
+ ROM_LOAD( "wyse_2301e.bin", 0x000000, 0x002000, CRC(2a62ea25) SHA1(f69c596aab307ef1872df29d353b5a61ff77bb74) ) // program
+ // WY-160 terminal (1990)
+ ROM_LOAD( "wyse_251167-06.bin", 0x000000, 0x010000, CRC(36e920df) SHA1(8fb7f51b4f47ef63b21d421227d6fef98001e4e9) ) // program
+ROM_END
+
+COMP( 19??, wyse, 0, 0, wyse, wyse, wyse_state, 0, "Wyse", "Unknown terminal", MACHINE_IS_SKELETON )