summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/decodmd2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/decodmd2.h')
-rw-r--r--src/mame/video/decodmd2.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/video/decodmd2.h b/src/mame/video/decodmd2.h
index 73dbe10ca33..4083f259c82 100644
--- a/src/mame/video/decodmd2.h
+++ b/src/mame/video/decodmd2.h
@@ -33,13 +33,11 @@ public:
DECLARE_READ8_MEMBER(ctrl_r);
DECLARE_READ8_MEMBER(status_r);
DECLARE_WRITE8_MEMBER(status_w);
- TIMER_DEVICE_CALLBACK_MEMBER(dmd_firq);
- MC6845_UPDATE_ROW(crtc_update_row);
static void static_set_gfxregion(device_t &device, const char *tag);
protected:
- virtual machine_config_constructor device_mconfig_additions() const override;
+ virtual void device_add_mconfig(machine_config &config) override;
virtual void device_start() override;
virtual void device_reset() override;
@@ -62,6 +60,9 @@ private:
uint8_t m_busy;
uint8_t m_command;
const char* m_gfxtag;
+
+ TIMER_DEVICE_CALLBACK_MEMBER(dmd_firq);
+ MC6845_UPDATE_ROW(crtc_update_row);
};
DECLARE_DEVICE_TYPE(DECODMD2, decodmd_type2_device)