summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gunbustr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gunbustr.h')
-rw-r--r--src/mame/includes/gunbustr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/gunbustr.h b/src/mame/includes/gunbustr.h
index 95aef16b0e3..e1d43b5a29b 100644
--- a/src/mame/includes/gunbustr.h
+++ b/src/mame/includes/gunbustr.h
@@ -1,6 +1,7 @@
// license:BSD-3-Clause
// copyright-holders:Bryan McPhail, David Graves
#include "machine/eepromser.h"
+#include "machine/watchdog.h"
#include "video/tc0480scp.h"
struct gb_tempsprite
@@ -24,6 +25,7 @@ public:
gunbustr_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
m_maincpu(*this,"maincpu"),
+ m_watchdog(*this, "watchdog"),
m_tc0480scp(*this, "tc0480scp"),
m_ram(*this,"ram"),
m_spriteram(*this,"spriteram"),
@@ -35,6 +37,7 @@ public:
}
required_device<cpu_device> m_maincpu;
+ required_device<watchdog_timer_device> m_watchdog;
required_device<tc0480scp_device> m_tc0480scp;
required_shared_ptr<UINT32> m_ram;
required_shared_ptr<UINT32> m_spriteram;