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
28
29
30
31
32
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
#ifndef MAME_SOUND_PCI_AC97_H
#define MAME_SOUND_PCI_AC97_H
#pragma once
#include "machine/pci.h"
class ac97_device : public pci_device {
public:
ac97_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock, uint32_t main_id, uint32_t revision, uint32_t subdevice_id)
: ac97_device(mconfig, tag, owner, clock)
{
set_ids(main_id, revision, 0x040300, subdevice_id);
}
ac97_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock);
protected:
virtual void device_start() override;
virtual void device_reset() override;
private:
void native_audio_mixer_map(address_map &map);
void native_audio_bus_mastering_map(address_map &map);
void mixer_map(address_map &map);
void bus_mastering_map(address_map &map);
};
DECLARE_DEVICE_TYPE(AC97, ac97_device)
#endif // MAME_SOUND_PCI_AC97_H
|