summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/midvunit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/midvunit.h')
-rw-r--r--src/mame/includes/midvunit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/midvunit.h b/src/mame/includes/midvunit.h
index 196f4e64bb4..f9502791f91 100644
--- a/src/mame/includes/midvunit.h
+++ b/src/mame/includes/midvunit.h
@@ -9,6 +9,7 @@
#include "video/poly.h"
#include "audio/dcs.h"
#include "machine/midwayic.h"
+#include "machine/watchdog.h"
#define MIDVUNIT_VIDEO_CLOCK 33000000
@@ -57,6 +58,7 @@ public:
m_videoram(*this, "videoram", 32),
m_textureram(*this, "textureram") ,
m_maincpu(*this, "maincpu"),
+ m_watchdog(*this, "watchdog"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
m_midway_serial_pic(*this, "serial_pic"),
@@ -141,6 +143,7 @@ public:
UINT32 screen_update_midvunit(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
TIMER_CALLBACK_MEMBER(scanline_timer_cb);
required_device<cpu_device> m_maincpu;
+ required_device<watchdog_timer_device> m_watchdog;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
optional_device<midway_serial_pic_device> m_midway_serial_pic;