blob: aeb1ec43e6171d5be68c7cffca1175443b6f0b28 (
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
27
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
// 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
|