summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/taito_f3.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/taito_f3.h')
-rw-r--r--src/mame/includes/taito_f3.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/includes/taito_f3.h b/src/mame/includes/taito_f3.h
index ee5102bc866..5c4b4cd769c 100644
--- a/src/mame/includes/taito_f3.h
+++ b/src/mame/includes/taito_f3.h
@@ -1,5 +1,6 @@
// license:BSD-3-Clause
// copyright-holders:Bryan McPhail
+#include "audio/taito_en.h"
#include "machine/watchdog.h"
#include "sound/okim6295.h"
#include "screen.h"
@@ -58,6 +59,7 @@ public:
: driver_device(mconfig, type, tag),
m_maincpu(*this, "maincpu"),
m_audiocpu(*this, "taito_en:audiocpu"),
+ m_taito_en(*this, "taito_en"),
m_watchdog(*this, "watchdog"),
m_oki(*this, "oki"),
m_gfxdecode(*this, "gfxdecode"),
@@ -73,6 +75,7 @@ public:
required_device<cpu_device> m_maincpu;
optional_device<cpu_device> m_audiocpu;
+ optional_device<taito_en_device> m_taito_en;
optional_device<watchdog_timer_device> m_watchdog;
optional_device<okim6295_device> m_oki;
required_device<gfxdecode_device> m_gfxdecode;