From 50fc3edb0c465df9a498d4c13c5485018a308a40 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Sun, 8 Aug 2021 10:15:29 +0200 Subject: crystal.cpp: documented test switch for wulybuly --- src/mame/drivers/crystal.cpp | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/crystal.cpp b/src/mame/drivers/crystal.cpp index 7975089efcb..48be29cc28e 100644 --- a/src/mame/drivers/crystal.cpp +++ b/src/mame/drivers/crystal.cpp @@ -544,6 +544,18 @@ static INPUT_PORTS_START( urachamu ) PORT_BIT( 0x00200000, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(3) PORT_NAME("P3 Red") INPUT_PORTS_END +static INPUT_PORTS_START( wulybuly ) + PORT_INCLUDE( crystal ) + + PORT_MODIFY("DSW") + PORT_DIPNAME( 0x40, 0x40, DEF_STR( Test ) ) PORT_DIPLOCATION("DSW:7") + PORT_DIPSETTING( 0x40, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x80, 0x80, DEF_STR( Unknown ) ) PORT_DIPLOCATION("DSW:8") + PORT_DIPSETTING( 0x80, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) +INPUT_PORTS_END + void crystal_state::crystal(machine_config &config) { @@ -790,5 +802,5 @@ GAME( 2001, officeye, 0, crystal, officeye, crystal_state, init_officeye GAME( 2001, donghaer, crysbios, crystal, crystal, crystal_state, init_donghaer, ROT0, "Danbi", "Donggul Donggul Haerong", MACHINE_NOT_WORKING | MACHINE_UNEMULATED_PROTECTION ) // 2 players mode has GFX issues, seldomly hangs GAME( 2002, urachamu, crysbios, crystal, urachamu, crystal_state, empty_init, ROT0, "GamToU", "Urachacha Mudaeri (Korea)", 0 ) // lamps, verify game timings GAME( 2003, topbladv, crysbios, crystal, topbladv, crystal_state, init_topbladv, ROT0, "SonoKong / Expotato", "Top Blade V", 0 ) -GAME( 200?, wulybuly, crysbios, crystal, crystal, crystal_state, empty_init, ROT0, "", "Wully Bully", MACHINE_NOT_WORKING ) // no actual graphics except offset text, confirmed to have no PIC protection so failing elsewhere -GAME( 200?, maldaiza, crysbios, crystal, crystal, crystal_state, init_maldaiza, ROT0, "", "Maldaliza", MACHINE_NOT_WORKING | MACHINE_UNEMULATED_PROTECTION ) // PIC hookup +GAME( 200?, wulybuly, crysbios, crystal, wulybuly, crystal_state, empty_init, ROT0, "", "Wully Bully", MACHINE_NOT_WORKING ) // no actual graphics except offset text, confirmed to have no PIC protection so failing elsewhere +GAME( 2002, maldaiza, crysbios, crystal, crystal, crystal_state, init_maldaiza, ROT0, "Big A Korea", "Maldaliza", MACHINE_NOT_WORKING | MACHINE_UNEMULATED_PROTECTION ) // PIC hookup -- cgit v1.2.3