From af9a5e817d3eefdda79e801056b29167ecbcdef9 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 13 Sep 2012 07:50:33 +0000 Subject: moved constructor of state classes into .h file (no whatsnew) --- src/mess/includes/coco12.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/mess/includes/coco12.h') diff --git a/src/mess/includes/coco12.h b/src/mess/includes/coco12.h index 3b02ac5f03d..6c5a59efcde 100644 --- a/src/mess/includes/coco12.h +++ b/src/mess/includes/coco12.h @@ -34,7 +34,13 @@ class coco12_state : public coco_state { public: - coco12_state(const machine_config &mconfig, device_type type, const char *tag); + 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) + { + } + required_device m_sam; required_device m_vdg; -- cgit v1.2.3