summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/dragon.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/dragon.c
parentf2a79b9dca3c9b09abaf7d741d211161c5bc20e6 (diff)
moved constructor of state classes into .h file (no whatsnew)
Diffstat (limited to 'src/mess/machine/dragon.c')
-rw-r--r--src/mess/machine/dragon.c24
1 files changed, 0 insertions, 24 deletions
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
//-------------------------------------------------