diff options
Diffstat (limited to 'src/devices/sound/msm5205.h')
-rw-r--r-- | src/devices/sound/msm5205.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/devices/sound/msm5205.h b/src/devices/sound/msm5205.h index 7f5af4fd975..90e6fd58661 100644 --- a/src/devices/sound/msm5205.h +++ b/src/devices/sound/msm5205.h @@ -62,7 +62,8 @@ public: protected: enum { - TIMER_VCK + TIMER_VCK, + TIMER_ADPCM_CAPTURE }; msm5205_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock); @@ -82,8 +83,9 @@ protected: virtual int get_prescaler() const; // internal state - sound_stream * m_stream; // number of stream system - emu_timer *m_timer; // VCK callback timer + sound_stream *m_stream; // number of stream system + emu_timer *m_vck_timer; // VCK callback timer + emu_timer *m_capture_timer; // delay after VCK active edge for ADPCM input capture u8 m_data; // next adpcm data bool m_vck; // VCK signal bool m_reset; // reset pin signal |