mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
New Not Working machine: Wyse terminals
This commit is contained in:
parent
0d891ac5fb
commit
6eeb1b8071
@ -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",
|
||||
|
44
src/mame/drivers/wyse.cpp
Normal file
44
src/mame/drivers/wyse.cpp
Normal file
@ -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 )
|
@ -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)
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user