summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/canyon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/canyon.h')
-rw-r--r--src/mame/includes/canyon.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/canyon.h b/src/mame/includes/canyon.h
index 316a8dc2d2c..aa314ed166f 100644
--- a/src/mame/includes/canyon.h
+++ b/src/mame/includes/canyon.h
@@ -6,6 +6,7 @@
*************************************************************************/
+#include "machine/watchdog.h"
#include "sound/discrete.h"
/* Discrete Sound Input Nodes */
@@ -27,6 +28,7 @@ public:
m_videoram(*this, "videoram"),
m_discrete(*this, "discrete"),
m_maincpu(*this, "maincpu"),
+ m_watchdog(*this, "watchdog"),
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
@@ -52,6 +54,7 @@ public:
void draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect );
void draw_bombs( bitmap_ind16 &bitmap, const rectangle &cliprect );
required_device<cpu_device> m_maincpu;
+ required_device<watchdog_timer_device> m_watchdog;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
};