New machines marked as NOT_WORKING

----------------------------------
Gokidetor [Surgeville, Sean Sutton, Smitdogg, The Dumping Union]
This commit is contained in:
AJR 2017-10-09 22:13:47 -04:00
parent de9ed22e4e
commit b4b439be5a
3 changed files with 218 additions and 0 deletions

View File

@ -3681,6 +3681,7 @@ files {
MAME_DIR .. "src/mame/drivers/gladiatr.cpp",
MAME_DIR .. "src/mame/includes/gladiatr.h",
MAME_DIR .. "src/mame/video/gladiatr.cpp",
MAME_DIR .. "src/mame/drivers/gokidetor.cpp",
MAME_DIR .. "src/mame/drivers/grchamp.cpp",
MAME_DIR .. "src/mame/includes/grchamp.h",
MAME_DIR .. "src/mame/audio/grchamp.cpp",

View File

@ -0,0 +1,214 @@
// license:BSD-3-Clause
// copyright-holders:AJR
/***************************************************************************
Gokidetor (c) 1992 Taito
Mechanical whack-a-mole with a dot-matrix LED screen.
***************************************************************************/
#include "emu.h"
#include "speaker.h"
#include "cpu/z80/z80.h"
#include "machine/te7750.h"
#include "sound/2203intf.h"
#include "sound/okim6295.h"
#include "audio/taitosnd.h"
class gokidetor_state : public driver_device
{
public:
gokidetor_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag)
, m_maincpu(*this, "maincpu")
{ }
DECLARE_WRITE8_MEMBER(out4_w);
DECLARE_WRITE8_MEMBER(out5_w);
DECLARE_WRITE8_MEMBER(out6_w);
DECLARE_WRITE8_MEMBER(out7_w);
DECLARE_WRITE8_MEMBER(out8_w);
DECLARE_WRITE8_MEMBER(out9_w);
DECLARE_WRITE8_MEMBER(ym_porta_w);
protected:
virtual void machine_start() override;
private:
required_device<cpu_device> m_maincpu;
};
void gokidetor_state::machine_start()
{
}
WRITE8_MEMBER(gokidetor_state::out4_w)
{
logerror("Writing %02X to TE7750 port 4\n", data);
}
WRITE8_MEMBER(gokidetor_state::out5_w)
{
logerror("Writing %02X to TE7750 port 5\n", data);
}
WRITE8_MEMBER(gokidetor_state::out6_w)
{
logerror("Writing %02X to TE7750 port 6\n", data);
}
WRITE8_MEMBER(gokidetor_state::out7_w)
{
logerror("Writing %02X to TE7750 port 7\n", data);
}
WRITE8_MEMBER(gokidetor_state::out8_w)
{
logerror("Writing %02X to TE7750 port 8\n", data & 0x3f);
}
WRITE8_MEMBER(gokidetor_state::out9_w)
{
logerror("Writing %02X to TE7750 port 9\n", data);
}
WRITE8_MEMBER(gokidetor_state::ym_porta_w)
{
if (data != 0x40)
logerror("Writing %02X to YM2203 port A\n", data);
}
static ADDRESS_MAP_START( main_map, AS_PROGRAM, 8, gokidetor_state )
AM_RANGE(0x0000, 0x7fff) AM_ROM
AM_RANGE(0x8000, 0x9fff) AM_ROM // probably banked
AM_RANGE(0xa000, 0xbfff) AM_RAM
// c000-c??? = ?
// c200-c??? = ?
// d000 = ?output
// d001 = ?output
// d101 = ?output
// d1c0 = ?output
AM_RANGE(0xd800, 0xd80f) AM_DEVREADWRITE("te7750", te7750_device, read, write)
// da00-da01 ?output
// de00 ?input
// df00 ?input
AM_RANGE(0xe000, 0xe003) AM_READNOP // ?input
AM_RANGE(0xf000, 0xf000) AM_DEVWRITE("pc060ha", tc0140syt_device, master_port_w)
AM_RANGE(0xf001, 0xf001) AM_DEVREADWRITE("pc060ha", tc0140syt_device, master_comm_r, master_comm_w)
// f600 ?output
// f700 ?output
ADDRESS_MAP_END
static ADDRESS_MAP_START( sound_map, AS_PROGRAM, 8, gokidetor_state )
AM_RANGE(0x0000, 0x7fff) AM_ROM
AM_RANGE(0x8000, 0x8fff) AM_RAM
AM_RANGE(0x9000, 0x9001) AM_DEVREADWRITE("ymsnd", ym2203_device, read, write)
AM_RANGE(0xa000, 0xa000) AM_DEVWRITE("pc060ha", tc0140syt_device, slave_port_w)
AM_RANGE(0xa001, 0xa001) AM_DEVREADWRITE("pc060ha", tc0140syt_device, slave_comm_r, slave_comm_w)
AM_RANGE(0xb000, 0xb000) AM_DEVREADWRITE("oki", okim6295_device, read, write)
ADDRESS_MAP_END
MACHINE_CONFIG_START( gokidetor )
MCFG_CPU_ADD("maincpu", Z80, XTAL_16MHz / 4) // divider not verified
MCFG_CPU_PROGRAM_MAP(main_map)
// IRQ from ???
// NMI related to E002 input and TE7750 port 7
MCFG_DEVICE_ADD("te7750", TE7750, 0)
MCFG_TE7750_IOS_CB(CONSTANT(3))
MCFG_TE7750_IN_PORT1_CB(IOPORT("IN1"))
MCFG_TE7750_IN_PORT2_CB(IOPORT("IN2"))
MCFG_TE7750_IN_PORT3_CB(IOPORT("IN3"))
MCFG_TE7750_OUT_PORT4_CB(WRITE8(gokidetor_state, out4_w))
MCFG_TE7750_OUT_PORT5_CB(WRITE8(gokidetor_state, out5_w))
MCFG_TE7750_OUT_PORT6_CB(WRITE8(gokidetor_state, out6_w))
MCFG_TE7750_OUT_PORT7_CB(WRITE8(gokidetor_state, out7_w))
MCFG_TE7750_IN_PORT8_CB(IOPORT("IN8"))
MCFG_TE7750_OUT_PORT8_CB(WRITE8(gokidetor_state, out8_w))
MCFG_TE7750_OUT_PORT9_CB(WRITE8(gokidetor_state, out9_w))
MCFG_CPU_ADD("soundcpu", Z80, 4000000)
MCFG_CPU_PROGRAM_MAP(sound_map)
MCFG_DEVICE_ADD("pc060ha", TC0140SYT, 0)
MCFG_TC0140SYT_MASTER_CPU("maincpu")
MCFG_TC0140SYT_SLAVE_CPU("soundcpu")
MCFG_SPEAKER_STANDARD_MONO("mono")
MCFG_SOUND_ADD("ymsnd", YM2203, 3000000)
MCFG_YM2203_IRQ_HANDLER(INPUTLINE("soundcpu", 0))
MCFG_AY8910_PORT_A_WRITE_CB(WRITE8(gokidetor_state, ym_porta_w))
MCFG_SOUND_ROUTE(0, "mono", 0.25)
MCFG_SOUND_ROUTE(1, "mono", 0.25)
MCFG_SOUND_ROUTE(2, "mono", 0.25)
MCFG_SOUND_ROUTE(3, "mono", 0.80)
MCFG_OKIM6295_ADD("oki", 1056000, PIN7_HIGH) // clock frequency & pin 7 not verified
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
MACHINE_CONFIG_END
INPUT_PORTS_START( gokidetor )
PORT_START("IN1")
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_1)
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_2)
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_3)
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_4)
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_5)
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_6)
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_7)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_8)
PORT_START("IN2")
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_Q)
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_W)
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_E)
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_R)
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_T)
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_Y)
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_U)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_I)
PORT_START("IN3")
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_A)
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_S)
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_D)
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_F)
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_G)
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_H)
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_J)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_K)
PORT_START("IN8")
PORT_BIT( 0x3f, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_Z)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_X)
INPUT_PORTS_END
ROM_START( gokidetor )
ROM_REGION( 0x20000, "maincpu", 0 )
ROM_LOAD( "ic2", 0, 0x20000, CRC(f9dbca28) SHA1(b2f6d6b66bfa5e5ca7c26a0709f7136bf9e1a42e) )
// 8000-FFFF appears to be graphics; 10000-1FFFF is unused
ROM_REGION( 0x10000, "soundcpu", 0 )
ROM_LOAD( "ic34", 0, 0x10000, CRC(fd06305d) SHA1(7889f0c360650bfd0fe593c522685a978879bfee) )
ROM_REGION( 0x40000, "oki", 0 )
ROM_LOAD( "ic87", 0, 0x40000, CRC(adb9fd16) SHA1(59aae5ac26cae30b961b30e17fd494094aa7aa15) )
ROM_REGION( 0x8000, "pals", 0 ) // unprotected
ROM_LOAD( "d33-01.pal16l8a.ic20.jed", 0x0000, 0xb01, CRC(7d614a54) SHA1(e79b6ac99f46ff69ea0565e89d6807667c9e0547) )
ROM_LOAD( "d33-02.pal16l8b.ic62.jed", 0x1000, 0xb01, CRC(6653423f) SHA1(ac93acccf649b97a3252aedf398310be90fe5d2d) )
ROM_LOAD( "d33-03.pal16l8a.ic70.jed", 0x2000, 0xb01, CRC(abfd9a01) SHA1(c76cc16842231c2f688ddd46a17f3a6df92a9580) )
ROM_LOAD( "d33-04.pal16l8b.ic81.jed", 0x3000, 0xb01, CRC(bf17aa05) SHA1(0cbbb2ee49c31e94ed7ea3a25f85e3d33c6b68fb) )
ROM_LOAD( "d33-05.pal16l8b.ic93.jed", 0x4000, 0xb01, CRC(2df9105e) SHA1(d28fc48588727e4bd3ec2377b383160329c261c3) )
ROM_LOAD( "d33-06.pal20l8b.ic44.jed", 0x5000, 0xd01, CRC(a1400501) SHA1(0b86d09d3e12668eaaf2c4b5a2d2b676d2e599f7) )
ROM_END
GAME( 1992, gokidetor, 0, gokidetor, gokidetor, gokidetor_state, 0, ROT0, "Taito", "Gokidetor", MACHINE_IS_SKELETON_MECHANICAL )

View File

@ -13782,6 +13782,9 @@ goindolk // (c) 1987 Sun a Electronics
goindolu // (c) 1987 Sun a Electronics
homo // bootleg
@source:gokidetor.cpp
gokidetor // (c) 1992 Taito
@source:goldngam.cpp
moviecrd // (c) 1998 Golden Games
swisspkr // (c) 1990 Golden Games