summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2022-06-25 09:55:46 -0400
committer arbee <rb6502@users.noreply.github.com>2022-06-25 09:55:46 -0400
commit9956c942da645ad53cb976459d715d71dd07781f (patch)
tree4ebc5dd517cee59313b5a2e69668b6165a4c3c9f /src/mame/drivers
parentab1c8851917659802f404f0683071db45a5aff61 (diff)
segasm1: fix missing port in games with the comms board. [R. Belmont]
Diffstat (limited to 'src/mame/drivers')
-rw-r--r--src/mame/drivers/segasm1.cpp26
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)