diff options
author | 2012-09-13 07:50:33 +0000 | |
---|---|---|
committer | 2012-09-13 07:50:33 +0000 | |
commit | af9a5e817d3eefdda79e801056b29167ecbcdef9 (patch) | |
tree | 3478327edb721e5adcd1a9965fea7b353bf72427 /src/mess/includes/coco12.h | |
parent | f2a79b9dca3c9b09abaf7d741d211161c5bc20e6 (diff) |
moved constructor of state classes into .h file (no whatsnew)
Diffstat (limited to 'src/mess/includes/coco12.h')
-rw-r--r-- | src/mess/includes/coco12.h | 8 |
1 files changed, 7 insertions, 1 deletions
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<sam6883_device> m_sam; required_device<mc6847_base_device> m_vdg; |