trunk/src/devices/sound/c140.cpp
| r252885 | r252886 | |
| 87 | 87 | //------------------------------------------------- |
| 88 | 88 | |
| 89 | 89 | c140_device::c140_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) |
| 90 | | : device_t(mconfig, C140, "C140", tag, owner, clock, "c140", __FILE__), |
| 91 | | , device_sound_interface(mconfig, *this), |
| 92 | | , m_sample_rate(0), |
| 93 | | , m_stream(nullptr), |
| 94 | | , m_banking_type(0), |
| 95 | | , m_mixer_buffer_left(nullptr), |
| 96 | | , m_mixer_buffer_right(nullptr), |
| 97 | | , m_baserate(0), |
| 98 | | , m_rom_region(*this, DEVICE_SELF) |
| 90 | : device_t(mconfig, C140, "C140", tag, owner, clock, "c140", __FILE__) |
| 91 | , device_sound_interface(mconfig, *this) |
| 92 | , m_sample_rate(0) |
| 93 | , m_stream(nullptr) |
| 94 | , m_banking_type(0) |
| 95 | , m_mixer_buffer_left(nullptr) |
| 96 | , m_mixer_buffer_right(nullptr) |
| 97 | , m_baserate(0) |
| 98 | , m_rom_ptr(*this, DEVICE_SELF) |
| 99 | 99 | , m_pRom(nullptr) |
| 100 | 100 | { |
| 101 | 101 | memset(m_REG, 0, sizeof(UINT8)*0x200); |
trunk/src/devices/sound/upd7759.cpp
| r252885 | r252886 | |
| 189 | 189 | |
| 190 | 190 | |
| 191 | 191 | upd7759_device::upd7759_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) |
| 192 | | : upd775x_device(mconfig, type, name, tag, owner, clock, shortname, source), |
| 192 | : upd775x_device(mconfig, type, name, tag, owner, clock, shortname, source) |
| 193 | 193 | , m_timer(nullptr) |
| 194 | 194 | { |
| 195 | 195 | } |