summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_slot/music.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/msx_slot/music.h')
-rw-r--r--src/devices/bus/msx_slot/music.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/devices/bus/msx_slot/music.h b/src/devices/bus/msx_slot/music.h
new file mode 100644
index 00000000000..8cbefb4bc0c
--- /dev/null
+++ b/src/devices/bus/msx_slot/music.h
@@ -0,0 +1,39 @@
+// license:BSD-3-Clause
+// copyright-holders:Wilbert Pol
+#ifndef __MSX_SLOT_MUSIC_H
+#define __MSX_SLOT_MUSIC_H
+
+
+#include "bus/msx_slot/slot.h"
+#include "bus/msx_slot/rom.h"
+#include "sound/2413intf.h"
+
+
+extern const device_type MSX_SLOT_MUSIC;
+
+
+#define MCFG_MSX_SLOT_MUSIC_ADD(_tag, _startpage, _numpages, _region, _offset, _ym2413_tag) \
+ MCFG_MSX_INTERNAL_SLOT_ADD(_tag, MSX_SLOT_MUSIC, _startpage, _numpages) \
+ msx_slot_rom_device::set_rom_start(*device, _region, _offset); \
+ msx_slot_music_device::set_ym2413_tag(*device, _ym2413_tag);
+class msx_slot_music_device : public msx_slot_rom_device
+{
+public:
+ msx_slot_music_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+
+ // static configuration helpers
+ static void set_ym2413_tag(device_t &device, const char *tag) { dynamic_cast<msx_slot_music_device &>(device).m_ym2413_tag = tag; }
+
+ virtual void device_start();
+
+ virtual DECLARE_READ8_MEMBER(read);
+
+ DECLARE_WRITE8_MEMBER(write_ym2413);
+
+private:
+ ym2413_device *m_ym2413;
+ const char *m_ym2413_tag;
+};
+
+
+#endif