diff options
Diffstat (limited to 'src/devices/sound/msm5205.h')
-rw-r--r-- | src/devices/sound/msm5205.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/sound/msm5205.h b/src/devices/sound/msm5205.h index a6830a6ab60..74cd39c7a7c 100644 --- a/src/devices/sound/msm5205.h +++ b/src/devices/sound/msm5205.h @@ -55,7 +55,7 @@ protected: TIMER_ADPCM_CAPTURE }; - msm5205_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock); + msm5205_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, u8 dac_bits); // device-level overrides virtual void device_start() override; @@ -83,6 +83,7 @@ protected: u8 m_bitwidth; // bit width selector -3B/4B s32 m_signal; // current ADPCM signal s32 m_step; // current ADPCM step + u8 m_dac_bits; // DAC output bits (10 for MSM5205, 12 for MSM6585) int m_diff_lookup[49*16]; devcb_write_line m_vck_cb; |