summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2018-11-06 19:07:54 +0100
committer hap <happppp@users.noreply.github.com>2018-11-06 19:07:54 +0100
commit927ece665cadc01a8130dcb6403975a49a138018 (patch)
tree6dd6dfcab301a601acda3bd6c754aa0e895180a6
parent044370414f89c247273bb043a554fd57f2971273 (diff)
video21: first 4 buttons on cabinet are: bet/einsatz, start, card/karte, stop (nw)
-rw-r--r--src/mame/drivers/video21.cpp8
-rw-r--r--src/mame/layout/video21.lay12
2 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/drivers/video21.cpp b/src/mame/drivers/video21.cpp
index 710c2da8d32..2f350bbfdb1 100644
--- a/src/mame/drivers/video21.cpp
+++ b/src/mame/drivers/video21.cpp
@@ -132,8 +132,8 @@ WRITE8_MEMBER(video21_state::lamp1_w)
m_hopper_motor = BIT(data, 4);
// lamps:
- // d5: take/stand(which?)
- // d6: take/stand(which?)
+ // d5: card/stop(which?)
+ // d6: card/stop(which?)
// d7: start
for (int i = 0; i < 3; i++)
m_lamps[i+0] = BIT(data, 7-i);
@@ -200,8 +200,8 @@ static INPUT_PORTS_START( video21 )
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_LOW, IPT_START1 )
- PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_GAMBLE_DEAL )
- PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_GAMBLE_STAND )
+ PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_GAMBLE_DEAL ) PORT_NAME("Card")
+ PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_GAMBLE_STAND ) PORT_NAME("Stop")
PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_GAMBLE_KEYOUT )
PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_CUSTOM ) PORT_CUSTOM_MEMBER(DEVICE_SELF, video21_state, hopper_coinout_r, nullptr)
PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_CUSTOM ) PORT_VBLANK("screen")
diff --git a/src/mame/layout/video21.lay b/src/mame/layout/video21.lay
index 8a83cdecbca..7cd0e3100d5 100644
--- a/src/mame/layout/video21.lay
+++ b/src/mame/layout/video21.lay
@@ -35,27 +35,27 @@
</text>
</element>
- <element name="take" defstate="0">
+ <element name="card" defstate="0">
<rect state="1">
<color red="1.0" green="0.0" blue="0.0" />
</rect>
<rect state="0">
<color red="0.3" green="0.0" blue="0.0" />
</rect>
- <text string="Take">
+ <text string="Card">
<color red="0.0" green="0.0" blue="0.0" />
<bounds x="0.1" y="0.25" width="0.8" height="0.5" />
</text>
</element>
- <element name="stand" defstate="0">
+ <element name="stop" defstate="0">
<rect state="1">
<color red="1.0" green="0.0" blue="0.0" />
</rect>
<rect state="0">
<color red="0.3" green="0.0" blue="0.0" />
</rect>
- <text string="Stand">
+ <text string="Stop">
<color red="0.0" green="0.0" blue="0.0" />
<bounds x="0.1" y="0.25" width="0.8" height="0.5" />
</text>
@@ -117,10 +117,10 @@
<bezel name="lamp0" element="start" inputtag="IN42" inputmask="0x04">
<bounds x="0.4" y="3.05" width="0.35" height="0.24" />
</bezel>
- <bezel name="lamp1" element="take" inputtag="IN42" inputmask="0x08">
+ <bezel name="lamp1" element="card" inputtag="IN42" inputmask="0x08">
<bounds x="0.8" y="3.05" width="0.35" height="0.24" />
</bezel>
- <bezel name="lamp2" element="stand" inputtag="IN42" inputmask="0x10">
+ <bezel name="lamp2" element="stop" inputtag="IN42" inputmask="0x10">
<bounds x="1.2" y="3.05" width="0.35" height="0.24" />
</bezel>
<bezel name="lamp3" element="accept" inputtag="IN44" inputmask="0x40">