summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sprint2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/sprint2.h')
-rw-r--r--src/mame/includes/sprint2.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/sprint2.h b/src/mame/includes/sprint2.h
index 991ad99025c..181d374a82b 100644
--- a/src/mame/includes/sprint2.h
+++ b/src/mame/includes/sprint2.h
@@ -6,6 +6,7 @@
*************************************************************************/
+#include "machine/watchdog.h"
#include "sound/discrete.h"
/* Discrete Sound Input Nodes */
@@ -30,6 +31,7 @@ public:
: driver_device(mconfig, type, tag),
m_video_ram(*this, "video_ram"),
m_maincpu(*this, "maincpu"),
+ m_watchdog(*this, "watchdog"),
m_discrete(*this, "discrete"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
@@ -83,6 +85,7 @@ public:
inline int get_sprite_y(UINT8 *video_ram, int n);
int service_mode();
required_device<cpu_device> m_maincpu;
+ required_device<watchdog_timer_device> m_watchdog;
required_device<discrete_device> m_discrete;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;