blob: 99073db5d8b4d74180290677e5485d0438fc35aa (
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, const XTAL &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();
}
|