summaryrefslogtreecommitdiffstatshomepage
path: root/trunk/src/emu/sound/st0016.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/emu/sound/st0016.h')
-rw-r--r--trunk/src/emu/sound/st0016.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/trunk/src/emu/sound/st0016.h b/trunk/src/emu/sound/st0016.h
new file mode 100644
index 00000000000..95203ffd2ba
--- /dev/null
+++ b/trunk/src/emu/sound/st0016.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#ifndef __ST0016_H__
+#define __ST0016_H__
+
+#include "devlegcy.h"
+
+typedef struct _st0016_interface st0016_interface;
+struct _st0016_interface
+{
+ UINT8 **p_soundram;
+};
+
+READ8_DEVICE_HANDLER( st0016_snd_r );
+WRITE8_DEVICE_HANDLER( st0016_snd_w );
+
+DECLARE_LEGACY_SOUND_DEVICE(ST0016, st0016);
+
+#endif /* __ST0016_H__ */