1 // ---------------------------------------------------------------------------
2 // This file is part of reSID, a MOS6581 SID emulator engine.
3 // Copyright (C) 2004 Dag Lem <resid@nimrod.no>
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // ---------------------------------------------------------------------------
32 void set_chip_model(chip_model model
);
33 void set_sync_source(Voice
*);
36 void writeCONTROL_REG(reg8
);
38 // Amplitude modulated waveform output.
39 // Range [-2048*255, 2047*255].
40 RESID_INLINE sound_sample
output();
43 WaveformGenerator wave
;
44 EnvelopeGenerator envelope
;
46 // Waveform D/A zero level.
47 sound_sample wave_zero
;
49 // Multiplying D/A DC offset.
50 sound_sample voice_DC
;
56 // ----------------------------------------------------------------------------
58 // The following function is defined inline because it is called every
59 // time a sample is calculated.
60 // ----------------------------------------------------------------------------
62 #if RESID_INLINING || defined(__VOICE_CC__)
64 // ----------------------------------------------------------------------------
65 // Amplitude modulated waveform output.
66 // Ideal range [-2048*255, 2047*255].
67 // ----------------------------------------------------------------------------
69 sound_sample
Voice::output()
71 // Multiply oscillator output with envelope output.
72 return (wave
.output() - wave_zero
)*envelope
.output() + voice_DC
;
75 #endif // RESID_INLINING || defined(__VOICE_CC__)
77 #endif // not __VOICE_H__