summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mcr68.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mcr68.h')
-rw-r--r--src/mame/includes/mcr68.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/mcr68.h b/src/mame/includes/mcr68.h
index bc92e7fc83e..3d2714c63e1 100644
--- a/src/mame/includes/mcr68.h
+++ b/src/mame/includes/mcr68.h
@@ -7,6 +7,7 @@
***************************************************************************/
#include "machine/6821pia.h"
+#include "machine/watchdog.h"
#include "audio/midway.h"
#include "audio/williams.h"
@@ -32,6 +33,7 @@ public:
m_videoram(*this, "videoram"),
m_spriteram(*this, "spriteram") ,
m_maincpu(*this, "maincpu"),
+ m_watchdog(*this, "watchdog"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
m_palette(*this, "palette")
@@ -130,6 +132,7 @@ public:
void subtract_from_counter(int counter, int count);
void mcr68_common_init(int clip, int xoffset);
required_device<cpu_device> m_maincpu;
+ required_device<watchdog_timer_device> m_watchdog;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;