diff options
Diffstat (limited to 'src/devices/sound')
| -rw-r--r-- | src/devices/sound/315-5641.c | 2 | ||||
| -rw-r--r-- | src/devices/sound/315-5641.h | 8 | ||||
| -rw-r--r-- | src/devices/sound/c352.c | 4 | ||||
| -rw-r--r-- | src/devices/sound/sn76496.c | 2 | ||||
| -rw-r--r-- | src/devices/sound/tms5110.c | 4 | ||||
| -rw-r--r-- | src/devices/sound/tms5110r.inc | 2 | ||||
| -rw-r--r-- | src/devices/sound/tms5220.c | 4 |
7 files changed, 13 insertions, 13 deletions
diff --git a/src/devices/sound/315-5641.c b/src/devices/sound/315-5641.c index a0de2fce330..9a14be61469 100644 --- a/src/devices/sound/315-5641.c +++ b/src/devices/sound/315-5641.c @@ -67,4 +67,4 @@ void sega_315_5641_pcm_device::device_reset() m_fifo_write = 0x00; upd775x_device::device_reset(); -}
\ No newline at end of file +} diff --git a/src/devices/sound/315-5641.h b/src/devices/sound/315-5641.h index c8fb0f6270f..108db11800c 100644 --- a/src/devices/sound/315-5641.h +++ b/src/devices/sound/315-5641.h @@ -16,9 +16,9 @@ public: DECLARE_WRITE8_MEMBER(port_w); UINT8 m_fifo_data[0x40]; - UINT8 m_fifo_read; // last read offset (will read in m_fifo_read+1) - UINT8 m_fifo_write; // write offset - + UINT8 m_fifo_read; // last read offset (will read in m_fifo_read+1) + UINT8 m_fifo_write; // write offset + protected: // device-level overrides virtual void device_start(); @@ -27,4 +27,4 @@ protected: }; -extern const device_type SEGA_315_5641_PCM;
\ No newline at end of file +extern const device_type SEGA_315_5641_PCM; diff --git a/src/devices/sound/c352.c b/src/devices/sound/c352.c index 98f8f3a9fed..e0bc39918b8 100644 --- a/src/devices/sound/c352.c +++ b/src/devices/sound/c352.c @@ -13,10 +13,10 @@ Supports 8-bit linear and 8-bit muLaw samples Output: digital, 16 bit, 4 channels Output sample rate is the input clock / (288 * 2). - + superctr: The clock divider appears to be configurable for each system. Below is a list of the divider values followed by the systems that use it. - + * 228: System 11. * 288: System 22, Super 22, NB-1/2, ND-1, FL. * 296: System 23, Super 23. diff --git a/src/devices/sound/sn76496.c b/src/devices/sound/sn76496.c index 7909d65a3e9..2f65392174d 100644 --- a/src/devices/sound/sn76496.c +++ b/src/devices/sound/sn76496.c @@ -109,7 +109,7 @@ 27/06/2012: Michael Zapf Converted to modern device, legacy devices were gradually removed afterwards. - + 16/09/2015: Lord Nightmare Fix PSG chips to have volume reg inited on reset to 0x0 based on tests by ValleyBell. Made Sega PSG chips start up with register 0x3 selected (volume diff --git a/src/devices/sound/tms5110.c b/src/devices/sound/tms5110.c index 2b09037ab51..17c52f2146c 100644 --- a/src/devices/sound/tms5110.c +++ b/src/devices/sound/tms5110.c @@ -525,9 +525,9 @@ void tms5110_device::process(INT16 *buffer, unsigned int size) fprintf(stderr,"K%d:%04d ", i+1, m_current_k[i]); fprintf(stderr,"Out:%06d ", this_sample); //#ifdef PERFECT_INTERPOLATION_HACK -// fprintf(stderr,"%d%d%d%d",m_old_zpar,m_zpar,m_old_uv_zpar,m_uv_zpar); +// fprintf(stderr,"%d%d%d%d",m_old_zpar,m_zpar,m_old_uv_zpar,m_uv_zpar); //#else -// fprintf(stderr,"x%dx%d",m_zpar,m_uv_zpar); +// fprintf(stderr,"x%dx%d",m_zpar,m_uv_zpar); //#endif fprintf(stderr,"\n"); #endif diff --git a/src/devices/sound/tms5110r.inc b/src/devices/sound/tms5110r.inc index c2ae6907df3..45fe4c984b2 100644 --- a/src/devices/sound/tms5110r.inc +++ b/src/devices/sound/tms5110r.inc @@ -568,7 +568,7 @@ NOTE FROM DECAP: immediately to the left of each of the K1,2,3,4,5,and 6 patent 4,335,277. They are likely related to the multiplicative interpolator described in us patent 4,419,540; whether the 5200/2501E and the 5220 or 5220C actually implement this interpolator or not is unclear. This interpolator - seems intended for chips with variable frame rate, so if it exists at all, + seems intended for chips with variable frame rate, so if it exists at all, it may only exist on the TMS/TSP5220C and CD2501ECD. */ diff --git a/src/devices/sound/tms5220.c b/src/devices/sound/tms5220.c index cf7a6120c6c..feb3a8e01fe 100644 --- a/src/devices/sound/tms5220.c +++ b/src/devices/sound/tms5220.c @@ -919,9 +919,9 @@ void tms5220_device::process(INT16 *buffer, unsigned int size) fprintf(stderr,"K%d:%04d ", i+1, m_current_k[i]); fprintf(stderr,"Out:%06d ", this_sample); //#ifdef PERFECT_INTERPOLATION_HACK -// fprintf(stderr,"%d%d%d%d",m_old_zpar,m_zpar,m_old_uv_zpar,m_uv_zpar); +// fprintf(stderr,"%d%d%d%d",m_old_zpar,m_zpar,m_old_uv_zpar,m_uv_zpar); //#else -// fprintf(stderr,"x%dx%d",m_zpar,m_uv_zpar); +// fprintf(stderr,"x%dx%d",m_zpar,m_uv_zpar); //#endif fprintf(stderr,"\n"); #endif |
