summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/chicago.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/chicago.c')
-rw-r--r--src/mame/drivers/chicago.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/mame/drivers/chicago.c b/src/mame/drivers/chicago.c
index 7b96653d05b..e5525a483c2 100644
--- a/src/mame/drivers/chicago.c
+++ b/src/mame/drivers/chicago.c
@@ -1,9 +1,9 @@
/***************************************************************************
-
+
Chicago Coin discrete hardware games
-
+
Game Name Model #
- -----------------------------------------
+ -----------------------------------------
Demolition Derby (1976) #466
Super Flipper (1975) #458
Olympic TV Football (1973) #429-A
@@ -12,7 +12,7 @@
TV Ping Pong (1973) #424
TV Pin Game (1975) #451
TV Tennis (1973) #427
-
+
***************************************************************************/
@@ -52,38 +52,38 @@ class chicago_state : public driver_device
public:
chicago_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_video(*this, "fixfreq")
+ m_maincpu(*this, "maincpu"),
+ m_video(*this, "fixfreq")
{
}
-
+
// devices
required_device<netlist_mame_device_t> m_maincpu;
required_device<fixedfreq_device> m_video;
-
+
protected:
-
+
// driver_device overrides
virtual void machine_start();
virtual void machine_reset();
-
+
virtual void video_start();
-
+
private:
-
+
};
static NETLIST_START(chicago)
SOLVER(Solver, 48000)
-// PARAM(Solver.FREQ, 48000)
+// PARAM(Solver.FREQ, 48000)
PARAM(Solver.ACCURACY, 1e-4) // works and is sufficient
// schematics
//...
-// NETDEV_ANALOG_CALLBACK(sound_cb, sound, exidyttl_state, sound_cb, "")
-// NETDEV_ANALOG_CALLBACK(video_cb, videomix, fixedfreq_device, update_vid, "fixfreq")
+// NETDEV_ANALOG_CALLBACK(sound_cb, sound, exidyttl_state, sound_cb, "")
+// NETDEV_ANALOG_CALLBACK(video_cb, videomix, fixedfreq_device, update_vid, "fixfreq")
NETLIST_END()
@@ -113,9 +113,9 @@ MACHINE_CONFIG_END
/***************************************************************************
-
+
Game driver(s)
-
+
***************************************************************************/