dbz.cpp: fixed some dip-switches for dbz (MT05788) (nw)

This commit is contained in:
Ivan Vangelista 2017-08-01 18:38:57 +02:00
parent 8cbd0f641d
commit 9b40004e5d

View File

@ -194,15 +194,17 @@ static INPUT_PORTS_START( dbz )
PORT_DIPSETTING( 0x0300, DEF_STR( Normal ) )
PORT_DIPSETTING( 0x0200, DEF_STR( Hard ) )
PORT_DIPSETTING( 0x0000, DEF_STR( Hardest ) )
PORT_DIPUNKNOWN_DIPLOC( 0x0400, 0x0400, "SW1:3" ) // seems unused
PORT_DIPNAME( 0x0800, 0x0800, DEF_STR( Flip_Screen ) ) PORT_DIPLOCATION("SW1:4") // Definitely correct
PORT_DIPNAME( 0x0400, 0x0000, DEF_STR( Language ) ) PORT_DIPLOCATION("SW1:3")
PORT_DIPSETTING( 0x0000, DEF_STR( English ) )
PORT_DIPSETTING( 0x0400, DEF_STR( Japanese ) )
PORT_DIPNAME( 0x0800, 0x0800, DEF_STR( Flip_Screen ) ) PORT_DIPLOCATION("SW1:4")
PORT_DIPSETTING( 0x0800, DEF_STR( Off ) )
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )
PORT_DIPUNKNOWN_DIPLOC( 0x1000, 0x1000, "SW1:5" )
PORT_DIPNAME( 0x1000, 0x1000, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW1:5")
PORT_DIPSETTING( 0x0000, DEF_STR( Off ) )
PORT_DIPSETTING( 0x1000, DEF_STR( On ) )
PORT_SERVICE_DIPLOC( 0x2000, IP_ACTIVE_LOW, "SW1:6" )
PORT_DIPNAME( 0x4000, 0x0000, DEF_STR( Language ) ) PORT_DIPLOCATION("SW1:7")
PORT_DIPSETTING( 0x0000, DEF_STR( English ) )
PORT_DIPSETTING( 0x4000, DEF_STR( Japanese ) )
PORT_DIPUNKNOWN_DIPLOC( 0x4000, 0x4000, "SW1:7" ) // seems unused
PORT_DIPNAME( 0x8000, 0x0000, "Mask ROM Test" ) PORT_DIPLOCATION("SW1:8") //NOP'd
PORT_DIPSETTING( 0x0000, DEF_STR( Off ) )
PORT_DIPSETTING( 0x8000, DEF_STR( On ) )
@ -269,6 +271,9 @@ static INPUT_PORTS_START( dbz2 )
PORT_DIPNAME( 0x1000, 0x1000, DEF_STR( Level_Select ) ) PORT_DIPLOCATION("SW1:5")
PORT_DIPSETTING( 0x1000, DEF_STR( Off ) )
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )
PORT_DIPNAME( 0x4000, 0x0000, DEF_STR( Language ) ) PORT_DIPLOCATION("SW1:7")
PORT_DIPSETTING( 0x0000, DEF_STR( English ) )
PORT_DIPSETTING( 0x4000, DEF_STR( Japanese ) )
INPUT_PORTS_END
/**********************************************************************************/