diff options
author | 2022-06-26 02:18:04 +1000 | |
---|---|---|
committer | 2022-06-26 02:18:04 +1000 | |
commit | d2438deeb2f798b55480298df326d45d9600efcc (patch) | |
tree | d99c27ea654fba04b0f712f3ea47b54d4bd36e36 | |
parent | 9f9e725bfbae18c1e99851d16a1a79736ec317f0 (diff) | |
parent | 9956c942da645ad53cb976459d715d71dd07781f (diff) |
Merge remote-tracking branch 'upstream/master'
-rw-r--r-- | src/mame/drivers/segasm1.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/mame/drivers/segasm1.cpp b/src/mame/drivers/segasm1.cpp index 3f05251abc7..dbb8c6171e9 100644 --- a/src/mame/drivers/segasm1.cpp +++ b/src/mame/drivers/segasm1.cpp @@ -585,6 +585,32 @@ static INPUT_PORTS_START(bingpty) PORT_START("INZ") PORT_BIT( 0xff, IP_ACTIVE_LOW, IPT_UNUSED ) + + PORT_START("DIP1") + PORT_DIPNAME( 0x01, 0x01, "DIP1-1" ) + PORT_DIPSETTING( 0x01, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x02, 0x02, "DIP1-2" ) + PORT_DIPSETTING( 0x02, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x04, 0x04, "DIP1-3" ) + PORT_DIPSETTING( 0x04, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x08, 0x08, "DIP1-4" ) + PORT_DIPSETTING( 0x08, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x10, 0x10, "DIP1-5" ) + PORT_DIPSETTING( 0x10, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x20, 0x20, "DIP1-6" ) + PORT_DIPSETTING( 0x20, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x40, 0x40, "DIP1-7" ) + PORT_DIPSETTING( 0x40, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPNAME( 0x80, 0x80, "DIP1-8" ) + PORT_DIPSETTING( 0x80, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) INPUT_PORTS_END void systemm1_state::m1base(machine_config &config) |