diff options
author | 2008-08-11 00:32:08 +0000 | |
---|---|---|
committer | 2008-08-11 00:32:08 +0000 | |
commit | 3710253aa77562ab4ab3e5abe9714f9f5a631b33 (patch) | |
tree | 064b48fd487739f3ed747215c7fc088ff66b0227 /src/emu/sound/iremga20.c | |
parent | fdf667cf9c4ba2d82c71eeb8ae9099151c33359a (diff) |
This (mostly - see below) completes the structure, lower-casing functions and re-inclusion updates of the src\sound\emu headers.
I did not do much to the following files because I did not know the best way to name them.
aicadsp.h
sid.h
sidenvel.h
sidvoice.h
ymdeltat.h
I did not update structures only used in the src\emu\sound\*.c files. They are only used locally in the file so they were not worth the effort.
Diffstat (limited to 'src/emu/sound/iremga20.c')
-rw-r--r-- | src/emu/sound/iremga20.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/sound/iremga20.c b/src/emu/sound/iremga20.c index 2cfb7d104fa..8717fe34a3b 100644 --- a/src/emu/sound/iremga20.c +++ b/src/emu/sound/iremga20.c @@ -132,7 +132,7 @@ static void IremGA20_update( void *param, stream_sample_t **inputs, stream_sampl } } -WRITE16_HANDLER( IremGA20_w ) +WRITE16_HANDLER( irem_ga20_w ) { struct IremGA20_chip_def *chip = sndti_token(SOUND_IREMGA20, 0); int channel; @@ -183,7 +183,7 @@ WRITE16_HANDLER( IremGA20_w ) } } -READ16_HANDLER( IremGA20_r ) +READ16_HANDLER( irem_ga20_r ) { struct IremGA20_chip_def *chip = sndti_token(SOUND_IREMGA20, 0); int channel; |