summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/highvdeo.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-04-10 08:42:34 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-04-10 08:42:34 +0000
commit9be192b9a41faf1f4f9d9b719440440d88671887 (patch)
treece9ccd90a2076d64fbded9b7487b0a7b088b0ba2 /src/mame/drivers/highvdeo.c
parentd68164b4c1216ac23354ac3a4634048c2c0e998a (diff)
added m_maincpu where missing in driver classes that are placed in drivers (nw)
Diffstat (limited to 'src/mame/drivers/highvdeo.c')
-rw-r--r--src/mame/drivers/highvdeo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/highvdeo.c b/src/mame/drivers/highvdeo.c
index 4d38548ca37..d8d243fcbfe 100644
--- a/src/mame/drivers/highvdeo.c
+++ b/src/mame/drivers/highvdeo.c
@@ -107,7 +107,8 @@ class highvdeo_state : public driver_device
public:
highvdeo_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_blit_ram(*this, "blit_ram"){ }
+ m_blit_ram(*this, "blit_ram"),
+ m_maincpu(*this, "maincpu") { }
required_shared_ptr<UINT16> m_blit_ram;
UINT16 m_vblank_bit;
@@ -141,6 +142,7 @@ public:
UINT32 screen_update_tourvisn(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
UINT32 screen_update_brasil(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
INTERRUPT_GEN_MEMBER(vblank_irq);
+ required_device<cpu_device> m_maincpu;
};