mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
tk2000: cleanup and fix validation (nw)
This commit is contained in:
parent
7e5e42adff
commit
370e57df45
@ -64,7 +64,6 @@ public:
|
||||
{ }
|
||||
|
||||
void tk2000(machine_config &config);
|
||||
void mpf2(machine_config &config);
|
||||
|
||||
protected:
|
||||
virtual void machine_start() override;
|
||||
@ -623,10 +622,6 @@ void tk2000_state::tk2000(machine_config &config)
|
||||
m_printer->busy_handler().set(FUNC(tk2000_state::printer_busy_w));
|
||||
}
|
||||
|
||||
void tk2000_state::mpf2(machine_config &config) {
|
||||
tk2000(config);
|
||||
}
|
||||
|
||||
/***************************************************************************
|
||||
|
||||
Game driver(s)
|
||||
@ -639,9 +634,9 @@ ROM_END
|
||||
|
||||
ROM_START(mpf2)
|
||||
ROM_REGION(0x4000,"maincpu",0)
|
||||
ROM_LOAD( "MPF_II.rom", 0x000000, 0x004000, CRC(8780189f) SHA1(92378b0db561632b58a9b36a85f8fb00796198bb) )
|
||||
ROM_LOAD( "mpf_ii.rom", 0x000000, 0x004000, CRC(8780189f) SHA1(92378b0db561632b58a9b36a85f8fb00796198bb) )
|
||||
ROM_END
|
||||
|
||||
/* YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME */
|
||||
COMP( 1984, tk2000, 0, 0, tk2000, tk2000, tk2000_state, empty_init, "Microdigital", "TK2000 Color Computer", MACHINE_NOT_WORKING )
|
||||
COMP( 1982, mpf2, tk2000, 0, tk2000, tk2000, tk2000_state, empty_init, "Multitech", "Microprofessor II", MACHINE_NOT_WORKING )
|
||||
COMP( 1982, tk2000, tk2000, 0, tk2000, tk2000, tk2000_state, empty_init, "Multitech", "Microprofessor II", MACHINE_NOT_WORKING )
|
||||
|
Loading…
Reference in New Issue
Block a user