diff options
author | 2019-07-02 20:30:21 +0200 | |
---|---|---|
committer | 2019-07-02 20:30:37 +0200 | |
commit | b6ce2e16d867b21119ce36f6e108d0866f396089 (patch) | |
tree | 16c3b1bfd5d9011b366ded7f10baef32c440651c /src/mame/drivers/pong.cpp | |
parent | 0b8733206a1f6d3c931171c18f2200b2eb5a2b87 (diff) |
-core: Removed almost all MCFG defines, and removed all remaining MACHINE_CONFIG_START/END uses. [Ryan Holtz]
Diffstat (limited to 'src/mame/drivers/pong.cpp')
-rw-r--r-- | src/mame/drivers/pong.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mame/drivers/pong.cpp b/src/mame/drivers/pong.cpp index e65af51db2b..70bf3590974 100644 --- a/src/mame/drivers/pong.cpp +++ b/src/mame/drivers/pong.cpp @@ -470,10 +470,6 @@ INPUT_PORTS_END void pong_state::pong(machine_config &config) { /* basic machine hardware */ - //MCFG_DEVICE_ADD("maincpu", NETLIST_CPU, NETLIST_CLOCK) - //MCFG_NETLIST_SETUP(pong) - //MCFG_NETLIST_SETUP_MEMBER(this, &pong_state::NETLIST_NAME(pong)) - NETLIST_CPU(config, "maincpu", NETLIST_CLOCK).set_source(this, &pong_state::NETLIST_NAME(pong)); NETLIST_ANALOG_INPUT(config, "maincpu:vr0", "ic_b9_R.R").set_mult_offset(1.0 / 100.0 * RES_K(50), RES_K(56) ); |