summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/sb0400.cpp
blob: b124a99b8f940a98142752a0eaf87c183fed6217 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#include "emu.h"
#include "sb0400.h"

DEFINE_DEVICE_TYPE(SB0400, sb0400_device, "sb0400", "Creative Labs SB0400 Audigy2 Value")

void sb0400_device::map(address_map &map)
{
}

sb0400_device::sb0400_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
	: pci_device(mconfig, SB0400, tag, owner, clock)
{
}

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();
}