summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/sb0400.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/sb0400.h')
-rw-r--r--src/emu/sound/sb0400.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/emu/sound/sb0400.h b/src/emu/sound/sb0400.h
new file mode 100644
index 00000000000..cea968503d9
--- /dev/null
+++ b/src/emu/sound/sb0400.h
@@ -0,0 +1,25 @@
+// Creative labs SB0400 Audigy2 Value
+
+#ifndef SB0400_H
+#define SB0400_H
+
+#include "machine/pci.h"
+
+#define MCFG_SB0400_ADD(_tag, _subdevice_id) \
+ MCFG_PCI_DEVICE_ADD(_tag, SB0400, 0x11020008, 0x00, 0x040100, _subdevice_id)
+
+class sb0400_device : public pci_device {
+public:
+ sb0400_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+
+protected:
+ virtual void device_start();
+ virtual void device_reset();
+
+private:
+ DECLARE_ADDRESS_MAP(map, 32);
+};
+
+extern const device_type SB0400;
+
+#endif