diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 54ce5414153..c5386f87b4c 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -3583,6 +3583,7 @@ files { MAME_DIR .. "src/mame/drivers/vii.cpp", MAME_DIR .. "src/mame/drivers/vsmilepro.cpp", MAME_DIR .. "src/mame/drivers/wicat.cpp", + MAME_DIR .. "src/mame/drivers/wyse.cpp", MAME_DIR .. "src/mame/drivers/xor100.cpp", MAME_DIR .. "src/mame/includes/xor100.h", MAME_DIR .. "src/mame/drivers/xavix.cpp", 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 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 ) diff --git a/src/mame/mame.lst b/src/mame/mame.lst index 13b71c0f4f3..d6d7aebcc65 100644 --- a/src/mame/mame.lst +++ b/src/mame/mame.lst @@ -38487,6 +38487,9 @@ wwfsstaru7 // TA-0024 (c) 1989 (US, newer) wwfsstaru6 // TA-0024 (c) 1989 (US) wwfsstaru4 // TA-0024 (c) 1989 (US) +@source:wyse.cpp +wyse // + @source:wyvernf0.cpp wyvernf0 // A39 (c) 1985 Taito Corporation (Japan) diff --git a/src/mame/mess.flt b/src/mame/mess.flt index 056137edd59..55ed1b6f7d8 100644 --- a/src/mame/mess.flt +++ b/src/mame/mess.flt @@ -329,6 +329,7 @@ leapster.cpp learnwin.cpp lft.cpp lg-dvd.cpp +lilith.cpp lisa.cpp llc.cpp lola8a.cpp @@ -724,6 +725,7 @@ vtech2.cpp wangpc.cpp wicat.cpp wswan.cpp +wyse.cpp x07.cpp x1.cpp x1twin.cpp