summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/sb0400.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/sb0400.c')
-rw-r--r--src/emu/sound/sb0400.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/emu/sound/sb0400.c b/src/emu/sound/sb0400.c
new file mode 100644
index 00000000000..6a8c522a525
--- /dev/null
+++ b/src/emu/sound/sb0400.c
@@ -0,0 +1,22 @@
+#include "sb0400.h"
+
+const device_type SB0400 = &device_creator<sb0400_device>;
+
+DEVICE_ADDRESS_MAP_START(map, 32, sb0400_device)
+ADDRESS_MAP_END
+
+sb0400_device::sb0400_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
+ : pci_device(mconfig, SB0400, "Creative Labs SB0400 Audigy2 Value", tag, owner, clock, "sb0400", __FILE__)
+{
+}
+
+void sb0400_device::device_start()
+{
+ pci_device::device_start();
+ add_map(64, M_IO, FUNC(sb0400_device::map));
+}
+
+void sb0400_device::device_reset()
+{
+ pci_device::device_reset();
+}