summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/coco.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-09-13 07:50:33 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-09-13 07:50:33 +0000
commitaf9a5e817d3eefdda79e801056b29167ecbcdef9 (patch)
tree3478327edb721e5adcd1a9965fea7b353bf72427 /src/mess/machine/coco.c
parentf2a79b9dca3c9b09abaf7d741d211161c5bc20e6 (diff)
moved constructor of state classes into .h file (no whatsnew)
Diffstat (limited to 'src/mess/machine/coco.c')
-rw-r--r--src/mess/machine/coco.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/mess/machine/coco.c b/src/mess/machine/coco.c
index db34c10a889..78be844099e 100644
--- a/src/mess/machine/coco.c
+++ b/src/mess/machine/coco.c
@@ -75,28 +75,6 @@ DAC and bitbanger values written should be reflected in the read.
//**************************************************************************
//-------------------------------------------------
-// ctor
-//-------------------------------------------------
-
-coco_state::coco_state(const machine_config &mconfig, device_type type, const char *tag)
- : driver_device(mconfig, type, tag),
- m_maincpu(*this, MAINCPU_TAG),
- m_pia_0(*this, PIA0_TAG),
- m_pia_1(*this, PIA1_TAG),
- m_dac(*this, DAC_TAG),
- m_wave(*this, WAVE_TAG),
- m_cococart(*this, CARTRIDGE_TAG),
- m_ram(*this, RAM_TAG),
- m_cassette(*this, CASSETTE_TAG),
- m_bitbanger(*this, BITBANGER_TAG),
- m_vhd_0(*this, VHD0_TAG),
- m_vhd_1(*this, VHD1_TAG)
-{
-}
-
-
-
-//-------------------------------------------------
// analog_port_start
//-------------------------------------------------