missed few more (nw)

This commit is contained in:
Miodrag Milanovic 2013-04-13 16:04:15 +00:00
parent 83c536ffea
commit 4b5654ad60
3 changed files with 13 additions and 7 deletions

View File

@ -9,7 +9,9 @@ class battlnts_state : public driver_device
public:
battlnts_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_audiocpu(*this, "audiocpu") ,
m_audiocpu(*this, "audiocpu"),
m_k007342(*this, "k007342"),
m_k007420(*this, "k007420"),
m_maincpu(*this, "maincpu") { }
/* memory pointers */
@ -22,8 +24,8 @@ public:
/* devices */
required_device<cpu_device> m_audiocpu;
device_t *m_k007342;
device_t *m_k007420;
required_device<k007342_device> m_k007342;
required_device<k007420_device> m_k007420;
DECLARE_WRITE8_MEMBER(battlnts_sh_irqtrigger_w);
DECLARE_WRITE8_MEMBER(battlnts_bankswitch_w);
DECLARE_WRITE8_MEMBER(battlnts_spritebank_w);

View File

@ -12,6 +12,8 @@ public:
: driver_device(mconfig, type, tag),
m_paletteram(*this, "paletteram"),
m_audiocpu(*this, "audiocpu"),
m_k007342(*this, "k007342"),
m_k007420(*this, "k007420"),
m_maincpu(*this, "maincpu"),
m_upd7759(*this, "upd") { }
@ -27,8 +29,8 @@ public:
/* devices */
required_device<cpu_device> m_audiocpu;
device_t *m_k007342;
device_t *m_k007420;
required_device<k007342_device> m_k007342;
required_device<k007420_device> m_k007420;
DECLARE_READ8_MEMBER(trackball_r);
DECLARE_WRITE8_MEMBER(bladestl_bankswitch_w);
DECLARE_WRITE8_MEMBER(bladestl_sh_irqtrigger_w);

View File

@ -11,6 +11,8 @@ public:
: driver_device(mconfig, type, tag),
m_paletteram(*this, "paletteram"),
m_audiocpu(*this, "audiocpu"),
m_k007342(*this, "k007342"),
m_k007420(*this, "k007420"),
m_maincpu(*this, "maincpu") { }
/* memory pointers */
@ -22,8 +24,8 @@ public:
/* devices */
required_device<cpu_device> m_audiocpu;
device_t *m_k007342;
device_t *m_k007420;
required_device<k007342_device> m_k007342;
required_device<k007420_device> m_k007420;
DECLARE_WRITE8_MEMBER(rockrage_bankswitch_w);
DECLARE_WRITE8_MEMBER(rockrage_sh_irqtrigger_w);
DECLARE_WRITE8_MEMBER(rockrage_vreg_w);