summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine')
-rw-r--r--src/mess/machine/coco.c22
-rw-r--r--src/mess/machine/coco12.c13
-rw-r--r--src/mess/machine/coco3.c14
-rw-r--r--src/mess/machine/dgnalpha.c14
-rw-r--r--src/mess/machine/dragon.c24
5 files changed, 0 insertions, 87 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
//-------------------------------------------------
diff --git a/src/mess/machine/coco12.c b/src/mess/machine/coco12.c
index d24db9899d8..c7239288d5e 100644
--- a/src/mess/machine/coco12.c
+++ b/src/mess/machine/coco12.c
@@ -9,19 +9,6 @@
#include "includes/coco12.h"
//-------------------------------------------------
-// ctor
-//-------------------------------------------------
-
-coco12_state::coco12_state(const machine_config &mconfig, device_type type, const char *tag)
- : coco_state(mconfig, type, tag),
- m_sam(*this, SAM_TAG),
- m_vdg(*this, VDG_TAG)
-{
-}
-
-
-
-//-------------------------------------------------
// device_start
//-------------------------------------------------
diff --git a/src/mess/machine/coco3.c b/src/mess/machine/coco3.c
index 72159e30da7..ba3103ced05 100644
--- a/src/mess/machine/coco3.c
+++ b/src/mess/machine/coco3.c
@@ -43,20 +43,6 @@
#include "includes/coco3.h"
-
-
-//-------------------------------------------------
-// ctor
-//-------------------------------------------------
-
-coco3_state::coco3_state(const machine_config &mconfig, device_type type, const char *tag)
- : coco_state(mconfig, type, tag),
- m_gime(*this, GIME_TAG)
-{
-}
-
-
-
//-------------------------------------------------
// ff20_write
//-------------------------------------------------
diff --git a/src/mess/machine/dgnalpha.c b/src/mess/machine/dgnalpha.c
index 19f12c30aa1..d37a6246aa7 100644
--- a/src/mess/machine/dgnalpha.c
+++ b/src/mess/machine/dgnalpha.c
@@ -68,20 +68,6 @@ keeping track of it in a variable in the driver.
#include "sound/ay8910.h"
#include "imagedev/flopdrv.h"
-
-//-------------------------------------------------
-// ctor
-//-------------------------------------------------
-
-dragon_alpha_state::dragon_alpha_state(const machine_config &mconfig, device_type type, const char *tag)
- : dragon64_state(mconfig, type, tag),
- m_pia_2(*this, PIA2_TAG),
- m_ay8912(*this, AY8912_TAG),
- m_fdc(*this, WD2797_TAG)
-{
-}
-
-
//-------------------------------------------------
// device_start
//-------------------------------------------------
diff --git a/src/mess/machine/dragon.c b/src/mess/machine/dragon.c
index f66ae22854b..79d811ddc8a 100644
--- a/src/mess/machine/dragon.c
+++ b/src/mess/machine/dragon.c
@@ -43,18 +43,6 @@ easier to manage.
***************************************************************************/
//-------------------------------------------------
-// ctor
-//-------------------------------------------------
-
-dragon_state::dragon_state(const machine_config &mconfig, device_type type, const char *tag)
- : coco12_state(mconfig, type, tag),
- m_printer(*this, PRINTER_TAG)
-{
-}
-
-
-
-//-------------------------------------------------
// pia1_pa_changed - called when PIA1 PA changes
//-------------------------------------------------
@@ -77,18 +65,6 @@ void dragon_state::pia1_pa_changed(void)
***************************************************************************/
//-------------------------------------------------
-// ctor
-//-------------------------------------------------
-
-dragon64_state::dragon64_state(const machine_config &mconfig, device_type type, const char *tag)
- : dragon_state(mconfig, type, tag),
- m_acia(*this, ACIA_TAG)
-{
-}
-
-
-
-//-------------------------------------------------
// ff00_read
//-------------------------------------------------