mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
few more for debug build (nw)
This commit is contained in:
parent
129ca79bff
commit
1103ab2af2
@ -23,7 +23,8 @@ public:
|
|||||||
m_k056832(*this, "k056832"),
|
m_k056832(*this, "k056832"),
|
||||||
m_k054338(*this, "k054338"),
|
m_k054338(*this, "k054338"),
|
||||||
m_k055555(*this, "k055555"),
|
m_k055555(*this, "k055555"),
|
||||||
m_palette(*this, "palette") { }
|
m_palette(*this, "palette"),
|
||||||
|
m_screen(*this, "screen") { }
|
||||||
|
|
||||||
/* memory pointers */
|
/* memory pointers */
|
||||||
UINT8 * m_ram;
|
UINT8 * m_ram;
|
||||||
@ -43,6 +44,7 @@ public:
|
|||||||
required_device<k054338_device> m_k054338;
|
required_device<k054338_device> m_k054338;
|
||||||
required_device<k055555_device> m_k055555;
|
required_device<k055555_device> m_k055555;
|
||||||
required_device<palette_device> m_palette;
|
required_device<palette_device> m_palette;
|
||||||
|
required_device<screen_device> m_screen;
|
||||||
DECLARE_READ16_MEMBER(control_r);
|
DECLARE_READ16_MEMBER(control_r);
|
||||||
DECLARE_WRITE16_MEMBER(control_w);
|
DECLARE_WRITE16_MEMBER(control_w);
|
||||||
DECLARE_WRITE16_MEMBER(control2_w);
|
DECLARE_WRITE16_MEMBER(control2_w);
|
||||||
|
@ -28,7 +28,8 @@ public:
|
|||||||
m_k053251(*this, "k053251"),
|
m_k053251(*this, "k053251"),
|
||||||
m_k053252(*this, "k053252"),
|
m_k053252(*this, "k053252"),
|
||||||
m_k056832(*this, "k056832"),
|
m_k056832(*this, "k056832"),
|
||||||
m_k054338(*this, "k054338") { }
|
m_k054338(*this, "k054338"),
|
||||||
|
m_screen(*this, "screen") { }
|
||||||
|
|
||||||
/* memory pointers */
|
/* memory pointers */
|
||||||
optional_shared_ptr<UINT16> m_workram;
|
optional_shared_ptr<UINT16> m_workram;
|
||||||
@ -56,6 +57,7 @@ public:
|
|||||||
optional_device<k053252_device> m_k053252;
|
optional_device<k053252_device> m_k053252;
|
||||||
required_device<k056832_device> m_k056832;
|
required_device<k056832_device> m_k056832;
|
||||||
required_device<k054338_device> m_k054338;
|
required_device<k054338_device> m_k054338;
|
||||||
|
required_device<screen_device> m_screen;
|
||||||
|
|
||||||
emu_timer *m_dmaend_timer;
|
emu_timer *m_dmaend_timer;
|
||||||
DECLARE_READ16_MEMBER(control2_r);
|
DECLARE_READ16_MEMBER(control2_r);
|
||||||
|
@ -23,7 +23,8 @@ public:
|
|||||||
m_k007232_2(*this, "k007232_2"),
|
m_k007232_2(*this, "k007232_2"),
|
||||||
m_k007232_3(*this, "k007232_3"),
|
m_k007232_3(*this, "k007232_3"),
|
||||||
m_gfxdecode(*this, "gfxdecode"),
|
m_gfxdecode(*this, "gfxdecode"),
|
||||||
m_palette(*this, "palette") { }
|
m_palette(*this, "palette"),
|
||||||
|
m_screen(*this, "screen") { }
|
||||||
|
|
||||||
optional_shared_ptr<UINT16> m_videostatus;
|
optional_shared_ptr<UINT16> m_videostatus;
|
||||||
optional_shared_ptr<UINT16> m_protection_ram;
|
optional_shared_ptr<UINT16> m_protection_ram;
|
||||||
@ -109,6 +110,7 @@ public:
|
|||||||
optional_device<k007232_device> m_k007232_3;
|
optional_device<k007232_device> m_k007232_3;
|
||||||
required_device<gfxdecode_device> m_gfxdecode;
|
required_device<gfxdecode_device> m_gfxdecode;
|
||||||
required_device<palette_device> m_palette;
|
required_device<palette_device> m_palette;
|
||||||
|
required_device<screen_device> m_screen;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*----------- defined in video/wecleman.c -----------*/
|
/*----------- defined in video/wecleman.c -----------*/
|
||||||
|
Loading…
Reference in New Issue
Block a user