blob: 8c98ddd26c57e0d0a08ebae2a0e965560f5cd3a5 (
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
28
29
30
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
#ifndef MAME_SOUND_MIXER_H
#define MAME_SOUND_MIXER_H
#pragma once
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
DECLARE_DEVICE_TYPE(MIXER, mixer_device)
// ======================> mixer_device
class mixer_device : public device_t, public device_mixer_interface
{
public:
// internal constructor
mixer_device(const machine_config &mconfig, const char *tag, device_t *owner, const XTAL &clock = XTAL());
protected:
// device-level overrides
virtual void device_start() override;
private:
u8 m_dummy = 0; // needed for save-state support
};
#endif // MAME_SOUND_MIXER_H
|