summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/cischeat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/cischeat.h')
-rw-r--r--src/mame/includes/cischeat.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/cischeat.h b/src/mame/includes/cischeat.h
index 30b7bb40e27..7a74b9e4f82 100644
--- a/src/mame/includes/cischeat.h
+++ b/src/mame/includes/cischeat.h
@@ -3,6 +3,7 @@
/* TODO: some variables are per-game specifics */
#include "sound/okim6295.h"
#include "machine/ticket.h"
+#include "machine/watchdog.h"
class cischeat_state : public driver_device
{
@@ -20,6 +21,7 @@ public:
m_cpu3(*this, "cpu3"),
m_cpu5(*this, "cpu5"),
m_soundcpu(*this, "soundcpu"),
+ m_watchdog(*this, "watchdog"),
m_oki1(*this, "oki1"),
m_oki2(*this, "oki2"),
m_gfxdecode(*this, "gfxdecode"),
@@ -121,6 +123,7 @@ public:
optional_device<cpu_device> m_cpu3;
optional_device<cpu_device> m_cpu5;
optional_device<cpu_device> m_soundcpu;
+ optional_device<watchdog_timer_device> m_watchdog;
required_device<okim6295_device> m_oki1;
required_device<okim6295_device> m_oki2;
required_device<gfxdecode_device> m_gfxdecode;