mirror of
https://github.com/holub/mame
synced 2025-05-25 15:25:33 +03:00
More Greyhound:
- added dip switches for Super Poker - improved inputs in Sports Authority
This commit is contained in:
parent
ede2cb5bcf
commit
e9616290bd
@ -3,6 +3,7 @@
|
||||
Trivia By Greyhound Electronics
|
||||
|
||||
driver by Pierpaolo Prazzoli and graphic fixes by Tomasz Slanina
|
||||
additional work by Mariusz Wojcieszek
|
||||
based on Find Out driver
|
||||
|
||||
ROM BOARD (2764 ROMs)
|
||||
@ -542,6 +543,36 @@ static INPUT_PORTS_START( sextriv1 )
|
||||
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* no coin 2 */
|
||||
INPUT_PORTS_END
|
||||
|
||||
static INPUT_PORTS_START(suprpokr)
|
||||
PORT_INCLUDE(gepoker)
|
||||
|
||||
PORT_MODIFY("DSWA")
|
||||
PORT_DIPNAME( 0x07, 0x07, DEF_STR( Coinage ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( 8C_1C ) )
|
||||
PORT_DIPSETTING( 0x01, DEF_STR( 7C_1C ) )
|
||||
PORT_DIPSETTING( 0x02, DEF_STR( 6C_1C ) )
|
||||
PORT_DIPSETTING( 0x03, DEF_STR( 5C_1C ) )
|
||||
PORT_DIPSETTING( 0x04, DEF_STR( 4C_1C ) )
|
||||
PORT_DIPSETTING( 0x05, DEF_STR( 3C_1C ) )
|
||||
PORT_DIPSETTING( 0x06, DEF_STR( 2C_1C ) )
|
||||
PORT_DIPSETTING( 0x07, DEF_STR( 1C_1C ) )
|
||||
PORT_DIPNAME( 0x08, 0x08, DEF_STR( Unused ) )
|
||||
PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x10, 0x10, "Screen" )
|
||||
PORT_DIPSETTING( 0x10, "Horizontal" )
|
||||
PORT_DIPSETTING( 0x00, "Vertical" )
|
||||
PORT_DIPNAME( 0x20, 0x20, "Percentage" )
|
||||
PORT_DIPSETTING( 0x20, "Dynamic" )
|
||||
PORT_DIPSETTING( 0x00, "Actual" )
|
||||
PORT_DIPNAME( 0x40, 0x40, "Hopper" )
|
||||
PORT_DIPSETTING( 0x40, "Disabled" )
|
||||
PORT_DIPSETTING( 0x00, "Enabled" )
|
||||
PORT_DIPNAME( 0x80, 0x80, "If RAM Error" )
|
||||
PORT_DIPSETTING( 0x80, "Play" )
|
||||
PORT_DIPSETTING( 0x00, "Freeze" )
|
||||
INPUT_PORTS_END
|
||||
|
||||
static INPUT_PORTS_START(geimulti)
|
||||
PORT_INCLUDE(gselect)
|
||||
|
||||
@ -578,18 +609,49 @@ static INPUT_PORTS_START(geimulti)
|
||||
INPUT_PORTS_END
|
||||
|
||||
static INPUT_PORTS_START(sprtauth)
|
||||
PORT_INCLUDE(geimulti)
|
||||
PORT_INCLUDE(getrivia)
|
||||
|
||||
PORT_MODIFY("IN1")
|
||||
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON1 )
|
||||
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON2 )
|
||||
PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON3 )
|
||||
PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON4 )
|
||||
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON5 )
|
||||
PORT_MODIFY("IN0")
|
||||
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_IMPULSE(2)
|
||||
PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_COIN2 ) PORT_IMPULSE(2)
|
||||
PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_SPECIAL ) PORT_CUSTOM(ticket_dispenser_0_port_r, 0) /* ticket status */
|
||||
PORT_SERVICE( 0x08, IP_ACTIVE_LOW )
|
||||
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNKNOWN )
|
||||
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNKNOWN )
|
||||
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNKNOWN )
|
||||
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN )
|
||||
|
||||
PORT_MODIFY("DSWA")
|
||||
PORT_DIPNAME( 0x0f, 0x0f, DEF_STR( Coinage ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( Free_Play ) )
|
||||
PORT_DIPSETTING( 0x07, DEF_STR( 7C_1C ) )
|
||||
PORT_DIPSETTING( 0x06, DEF_STR( 6C_1C ) )
|
||||
PORT_DIPSETTING( 0x05, DEF_STR( 5C_1C ) )
|
||||
PORT_DIPSETTING( 0x04, DEF_STR( 4C_1C ) )
|
||||
PORT_DIPSETTING( 0x03, DEF_STR( 3C_1C ) )
|
||||
PORT_DIPSETTING( 0x02, DEF_STR( 2C_1C ) )
|
||||
PORT_DIPSETTING( 0x01, DEF_STR( 1C_1C ) )
|
||||
PORT_DIPSETTING( 0x08, DEF_STR( Free_Play ) )
|
||||
PORT_DIPSETTING( 0x09, DEF_STR( 1C_1C ) )
|
||||
PORT_DIPSETTING( 0x0a, DEF_STR( 1C_2C ) )
|
||||
PORT_DIPSETTING( 0x0b, DEF_STR( 1C_3C ) )
|
||||
PORT_DIPSETTING( 0x0c, DEF_STR( 1C_4C ) )
|
||||
PORT_DIPSETTING( 0x0d, DEF_STR( 1C_5C ) )
|
||||
PORT_DIPSETTING( 0x0e, DEF_STR( 1C_6C ) )
|
||||
PORT_DIPSETTING( 0x0f, DEF_STR( 1C_7C ) )
|
||||
PORT_DIPNAME( 0x10, 0x10, DEF_STR( Unknown ) )
|
||||
PORT_DIPSETTING( 0x10, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x20, 0x20, DEF_STR( Unknown ) )
|
||||
PORT_DIPSETTING( 0x20, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x40, 0x40, DEF_STR( Unknown ) )
|
||||
PORT_DIPSETTING( 0x40, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
PORT_DIPNAME( 0x80, 0x80, DEF_STR( Unknown ) )
|
||||
PORT_DIPSETTING( 0x80, DEF_STR( Off ) )
|
||||
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
|
||||
|
||||
INPUT_PORTS_END
|
||||
|
||||
static const ppi8255_interface getrivia_ppi8255_intf[2] =
|
||||
@ -1222,7 +1284,7 @@ GAME( 1984, gtsersb, gtsers1, getrivia, getrivia, 0, ROT0, "Greyhound El
|
||||
GAME( 1985, sextriv1, 0, getrivia, sextriv1, 0, ROT0, "Kinky Kit and Game Co.", "Sexual Trivia (Version 1.02SB, set 1)", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
||||
GAME( 1985, sextriv2, sextriv1, getrivia, sextriv1, 0, ROT0, "Kinky Kit and Game Co.", "Sexual Trivia (Version 1.02SB, set 2)", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
||||
|
||||
GAME( 1987, suprpokr, 0, suprpokr, gepoker, 0, ROT0, "Grayhound Electronics", "Super Poker", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
||||
GAME( 1987, suprpokr, 0, suprpokr, suprpokr, 0, ROT0, "Grayhound Electronics", "Super Poker", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
||||
|
||||
GAME( 1992, geimulti, 0, geimulti, geimulti, geimulti,ROT0, "Grayhound Electronics", "GEI Multi Game", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
||||
GAME( 1992, sprtauth, 0, sprtauth, sprtauth, geimulti,ROT0, "Classic Games", "Sport Authority", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
||||
GAME( 1992, sprtauth, 0, sprtauth, sprtauth, geimulti,ROT0, "Classic Games", "Sports Authority", GAME_IMPERFECT_GRAPHICS | GAME_IMPERFECT_SOUND )
|
||||
|
Loading…
Reference in New Issue
Block a user