summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/asc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/asc.h')
-rw-r--r--src/emu/sound/asc.h35
1 files changed, 17 insertions, 18 deletions
diff --git a/src/emu/sound/asc.h b/src/emu/sound/asc.h
index 147edc0e93d..cc6c8288921 100644
--- a/src/emu/sound/asc.h
+++ b/src/emu/sound/asc.h
@@ -22,14 +22,14 @@
// chip behavior types
enum
{
- ASC_TYPE_ASC = 0, // original discrete Apple Sound Chip
- ASC_TYPE_EASC = 1, // discrete Enhanced Apple Sound Chip
- ASC_TYPE_V8 = 2, // Subset of ASC included in the V8 ASIC (LC/LCII)
- ASC_TYPE_EAGLE = 3, // Subset of ASC included in the Eagle ASIC (Classic II)
- ASC_TYPE_SPICE = 4, // Subset of ASC included in the Spice ASIC (Color Classic)
- ASC_TYPE_SONORA = 5, // Subset of ASC included in the Sonora ASIC (LCIII)
- ASC_TYPE_VASP = 6, // Subset of ASC included in the VASP ASIC (IIvx/IIvi)
- ASC_TYPE_ARDBEG = 7 // Subset of ASC included in the Ardbeg ASIC (LC520)
+ ASC_TYPE_ASC = 0, // original discrete Apple Sound Chip
+ ASC_TYPE_EASC = 1, // discrete Enhanced Apple Sound Chip
+ ASC_TYPE_V8 = 2, // Subset of ASC included in the V8 ASIC (LC/LCII)
+ ASC_TYPE_EAGLE = 3, // Subset of ASC included in the Eagle ASIC (Classic II)
+ ASC_TYPE_SPICE = 4, // Subset of ASC included in the Spice ASIC (Color Classic)
+ ASC_TYPE_SONORA = 5, // Subset of ASC included in the Sonora ASIC (LCIII)
+ ASC_TYPE_VASP = 6, // Subset of ASC included in the VASP ASIC (IIvx/IIvi)
+ ASC_TYPE_ARDBEG = 7 // Subset of ASC included in the Ardbeg ASIC (LC520)
};
@@ -105,21 +105,21 @@ protected:
virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples);
// inline data
- UINT8 m_chip_type;
+ UINT8 m_chip_type;
void (*m_irq_cb)(device_t *device, int state);
- UINT8 m_fifo_a[0x400];
- UINT8 m_fifo_b[0x400];
+ UINT8 m_fifo_a[0x400];
+ UINT8 m_fifo_b[0x400];
- UINT8 m_regs[0x800];
+ UINT8 m_regs[0x800];
- UINT32 m_phase[4], m_incr[4];
+ UINT32 m_phase[4], m_incr[4];
- int m_fifo_a_rdptr, m_fifo_b_rdptr;
- int m_fifo_a_wrptr, m_fifo_b_wrptr;
- int m_fifo_cap_a, m_fifo_cap_b;
+ int m_fifo_a_rdptr, m_fifo_b_rdptr;
+ int m_fifo_a_wrptr, m_fifo_b_wrptr;
+ int m_fifo_cap_a, m_fifo_cap_b;
- emu_timer *m_timer;
+ emu_timer *m_timer;
};
@@ -128,4 +128,3 @@ extern const device_type ASC;
#endif /* __ASC_H__ */
-