diff options
author | 2023-04-01 11:20:40 -0400 | |
---|---|---|
committer | 2023-04-01 11:20:51 -0400 | |
commit | 821ee65c0b4e7c0ae03c08ca6b0703c43351027c (patch) | |
tree | d80ff43fd36378d6cba5bce00bc4b3fd29d806e6 | |
parent | 44ea32a8a87175e2c1e4b05ccdef80a647c75171 (diff) |
crazyfgt: Use standard types for inputs, also number these and note pinout
-rw-r--r-- | src/mame/seta/seta.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/seta/seta.cpp b/src/mame/seta/seta.cpp index 335d9bc96c4..d080c0f6d8c 100644 --- a/src/mame/seta/seta.cpp +++ b/src/mame/seta/seta.cpp @@ -7139,12 +7139,12 @@ static INPUT_PORTS_START( crazyfgt ) PORT_BIT( 0x0080, IP_ACTIVE_LOW, IPT_UNKNOWN ) PORT_START("INPUT") //Player - $610004.w - PORT_BIT( 0x0001, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("top-center") PORT_CODE(KEYCODE_5_PAD) - PORT_BIT( 0x0002, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("bottom-center") PORT_CODE(KEYCODE_2_PAD) - PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("top-left") PORT_CODE(KEYCODE_4_PAD) - PORT_BIT( 0x0008, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("bottom-left") PORT_CODE(KEYCODE_1_PAD) - PORT_BIT( 0x0010, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("top-right") PORT_CODE(KEYCODE_6_PAD) - PORT_BIT( 0x0020, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("bottom-right") PORT_CODE(KEYCODE_3_PAD) + PORT_BIT( 0x0001, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_NAME("Button 2 (top center)") PORT_CODE(KEYCODE_5_PAD) // JAMMA parts side pin 20 + PORT_BIT( 0x0002, IP_ACTIVE_LOW, IPT_BUTTON5 ) PORT_NAME("Button 5 (bottom center)") PORT_CODE(KEYCODE_2_PAD) // JAMMA parts side pin 21 + PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_NAME("Button 1 (top left)") PORT_CODE(KEYCODE_4_PAD) // JAMMA parts side pin 18 + PORT_BIT( 0x0008, IP_ACTIVE_LOW, IPT_BUTTON4 ) PORT_NAME("Button 4 (bottom left)") PORT_CODE(KEYCODE_1_PAD) // JAMMA parts side pin 19 + PORT_BIT( 0x0010, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_NAME("Button 3 (top right)") PORT_CODE(KEYCODE_6_PAD) // JAMMA parts side pin 22 + PORT_BIT( 0x0020, IP_ACTIVE_LOW, IPT_BUTTON6 ) PORT_NAME("Button 6 (bottom right)") PORT_CODE(KEYCODE_3_PAD) // JAMMA parts side pin 23 PORT_BIT( 0x0040, IP_ACTIVE_LOW, IPT_UNKNOWN ) PORT_BIT( 0x0080, IP_ACTIVE_LOW, IPT_SERVICE1 ) // ticket |