summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_cart/moonsound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/msx_cart/moonsound.cpp')
-rw-r--r--src/devices/bus/msx_cart/moonsound.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/bus/msx_cart/moonsound.cpp b/src/devices/bus/msx_cart/moonsound.cpp
index 8596bfce530..95a212ebb67 100644
--- a/src/devices/bus/msx_cart/moonsound.cpp
+++ b/src/devices/bus/msx_cart/moonsound.cpp
@@ -11,12 +11,14 @@ TODO:
#include "emu.h"
#include "moonsound.h"
+#include "speaker.h"
+
#define VERBOSE 0
#define LOG(x) do { if (VERBOSE) logerror x; } while (0)
-const device_type MSX_CART_MOONSOUND = &device_creator<msx_cart_moonsound>;
+const device_type MSX_CART_MOONSOUND = device_creator<msx_cart_moonsound>;
msx_cart_moonsound::msx_cart_moonsound(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)