From 1103ab2af2db8892db88d874a5503ebded1a6d6b Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Wed, 5 Mar 2014 17:39:47 +0000 Subject: [PATCH] few more for debug build (nw) --- src/mame/includes/bishi.h | 4 +++- src/mame/includes/moo.h | 4 +++- src/mame/includes/wecleman.h | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/mame/includes/bishi.h b/src/mame/includes/bishi.h index c5cb022a47a..25b6e5590c2 100644 --- a/src/mame/includes/bishi.h +++ b/src/mame/includes/bishi.h @@ -23,7 +23,8 @@ public: m_k056832(*this, "k056832"), m_k054338(*this, "k054338"), m_k055555(*this, "k055555"), - m_palette(*this, "palette") { } + m_palette(*this, "palette"), + m_screen(*this, "screen") { } /* memory pointers */ UINT8 * m_ram; @@ -43,6 +44,7 @@ public: required_device m_k054338; required_device m_k055555; required_device m_palette; + required_device m_screen; DECLARE_READ16_MEMBER(control_r); DECLARE_WRITE16_MEMBER(control_w); DECLARE_WRITE16_MEMBER(control2_w); diff --git a/src/mame/includes/moo.h b/src/mame/includes/moo.h index d77f15d8050..f40c950b29b 100644 --- a/src/mame/includes/moo.h +++ b/src/mame/includes/moo.h @@ -28,7 +28,8 @@ public: m_k053251(*this, "k053251"), m_k053252(*this, "k053252"), m_k056832(*this, "k056832"), - m_k054338(*this, "k054338") { } + m_k054338(*this, "k054338"), + m_screen(*this, "screen") { } /* memory pointers */ optional_shared_ptr m_workram; @@ -56,6 +57,7 @@ public: optional_device m_k053252; required_device m_k056832; required_device m_k054338; + required_device m_screen; emu_timer *m_dmaend_timer; DECLARE_READ16_MEMBER(control2_r); diff --git a/src/mame/includes/wecleman.h b/src/mame/includes/wecleman.h index ef6cbb9d360..3adb39cbb04 100644 --- a/src/mame/includes/wecleman.h +++ b/src/mame/includes/wecleman.h @@ -23,7 +23,8 @@ public: m_k007232_2(*this, "k007232_2"), m_k007232_3(*this, "k007232_3"), m_gfxdecode(*this, "gfxdecode"), - m_palette(*this, "palette") { } + m_palette(*this, "palette"), + m_screen(*this, "screen") { } optional_shared_ptr m_videostatus; optional_shared_ptr m_protection_ram; @@ -109,6 +110,7 @@ public: optional_device m_k007232_3; required_device m_gfxdecode; required_device m_palette; + required_device m_screen; }; /*----------- defined in video/wecleman.c -----------*/