summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/namcos86.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/namcos86.h')
-rw-r--r--src/mame/includes/namcos86.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/namcos86.h b/src/mame/includes/namcos86.h
index a9f206c5fd7..306146fa375 100644
--- a/src/mame/includes/namcos86.h
+++ b/src/mame/includes/namcos86.h
@@ -1,5 +1,6 @@
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria
+#include "machine/watchdog.h"
#include "sound/namco.h"
class namcos86_state : public driver_device
@@ -9,6 +10,7 @@ public:
: driver_device(mconfig, type, tag)
, m_cpu1(*this, "cpu1")
, m_cpu2(*this, "cpu2")
+ , m_watchdog(*this, "watchdog")
, m_cus30(*this, "namco")
, m_gfxdecode(*this, "gfxdecode")
, m_palette(*this, "palette")
@@ -21,6 +23,7 @@ public:
required_device<cpu_device> m_cpu1;
required_device<cpu_device> m_cpu2;
+ required_device<watchdog_timer_device> m_watchdog;
required_device<namco_cus30_device> m_cus30;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;