summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/sn76477.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/sn76477.h')
-rw-r--r--src/emu/sound/sn76477.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/sound/sn76477.h b/src/emu/sound/sn76477.h
index f4afa46bd92..c00c2d6ba4a 100644
--- a/src/emu/sound/sn76477.h
+++ b/src/emu/sound/sn76477.h
@@ -85,13 +85,13 @@ struct sn76477_interface
*****************************************************************************/
/* these functions take 0 or 1 as a logic input */
-WRITE_LINE_DEVICE_HANDLER( sn76477_enable_w ); /* active LO, 0 = enabled, 1 = disabled */
+WRITE_LINE_DEVICE_HANDLER( sn76477_enable_w ); /* active LO, 0 = enabled, 1 = disabled */
WRITE_LINE_DEVICE_HANDLER( sn76477_mixer_a_w );
WRITE_LINE_DEVICE_HANDLER( sn76477_mixer_b_w );
WRITE_LINE_DEVICE_HANDLER( sn76477_mixer_c_w );
WRITE_LINE_DEVICE_HANDLER( sn76477_envelope_1_w );
WRITE_LINE_DEVICE_HANDLER( sn76477_envelope_2_w );
-WRITE_LINE_DEVICE_HANDLER( sn76477_vco_w ); /* 0 = external, 1 = controlled by SLF */
+WRITE_LINE_DEVICE_HANDLER( sn76477_vco_w ); /* 0 = external, 1 = controlled by SLF */
WRITE_LINE_DEVICE_HANDLER( sn76477_noise_clock_w ); /* noise clock write, if noise_clock_res = 0 */
/* these functions take a resistor value in Ohms */
@@ -106,7 +106,7 @@ void sn76477_amplitude_res_w(device_t *device, double data);
void sn76477_feedback_res_w(device_t *device, double data);
/* these functions take a capacitor value in Farads or the voltage on it in Volts */
-#define SN76477_EXTERNAL_VOLTAGE_DISCONNECT (-1.0) /* indicates that the voltage is internally computed,
+#define SN76477_EXTERNAL_VOLTAGE_DISCONNECT (-1.0) /* indicates that the voltage is internally computed,
can be used in all the functions that take a
voltage on a capacitor */
void sn76477_one_shot_cap_w(device_t *device, double data);
@@ -125,7 +125,7 @@ void sn76477_vco_voltage_w(device_t *device, double data);
void sn76477_pitch_voltage_w(device_t *device, double data);
class sn76477_device : public device_t,
- public device_sound_interface
+ public device_sound_interface
{
public:
sn76477_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);