summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/coco12.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/coco12.h')
-rw-r--r--src/mess/includes/coco12.h8
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;