summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/nl_rebound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/nl_rebound.cpp')
-rw-r--r--src/mame/machine/nl_rebound.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/mame/machine/nl_rebound.cpp b/src/mame/machine/nl_rebound.cpp
index 9843b95d698..17b477c4d10 100644
--- a/src/mame/machine/nl_rebound.cpp
+++ b/src/mame/machine/nl_rebound.cpp
@@ -81,6 +81,8 @@ static NETLIST_START(rebound_schematics)
SWITCH2(START_SW)
TTL_INPUT(antenna, 0)
+ NET_C(V5, antenna.VCC)
+ NET_C(GND, antenna.GND)
// DSW1a/b are actually only a 1 contact switches.
// The logic is needed to force high level on
@@ -116,6 +118,12 @@ static NETLIST_START(rebound_schematics)
NET_C(CON15, antenna)
+ // Coin Counter is connected to CON10 as well. Simulate using resistor
+
+ RES(RCOINCOUNTER, 10)
+ NET_C(RCOINCOUNTER.1, CON10)
+ NET_C(RCOINCOUNTER.2, V5)
+
/* -----------------------------------------------------------------------
* Real netlist start
* -----------------------------------------------------------------------*/
@@ -1289,8 +1297,6 @@ NETLIST_START(rebound)
LOCAL_SOURCE(rebound_schematics)
SOLVER(Solver, 480)
- PARAM(Solver.VNTOL, 1e-9)
- PARAM(Solver.RELTOL, 1e-9)
PARAM(Solver.DYNAMIC_TS, 1)
PARAM(Solver.DYNAMIC_LTE, 1e-6)
PARAM(Solver.DYNAMIC_MIN_TIMESTEP, 5e-7)