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/5110intf.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/5110intf.c')
-rw-r--r-- | src/emu/sound/5110intf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/sound/5110intf.c b/src/emu/sound/5110intf.c index a20fd7bdacf..00750c00231 100644 --- a/src/emu/sound/5110intf.c +++ b/src/emu/sound/5110intf.c @@ -173,12 +173,12 @@ static void tms5110_reset(void *chip) /****************************************************************************** - tms5110_CTL_w -- write Control Command to the sound chip + tms5110_ctl_w -- write Control Command to the sound chip commands like Speech, Reset, etc., are loaded into the chip via the CTL pins ******************************************************************************/ -WRITE8_HANDLER( tms5110_CTL_w ) +WRITE8_HANDLER( tms5110_ctl_w ) { struct tms5110_info *info = sndti_token(SOUND_TMS5110, 0); @@ -189,11 +189,11 @@ WRITE8_HANDLER( tms5110_CTL_w ) /****************************************************************************** - tms5110_PDC_w -- write to PDC pin on the sound chip + tms5110_pdc_w -- write to PDC pin on the sound chip ******************************************************************************/ -WRITE8_HANDLER( tms5110_PDC_w ) +WRITE8_HANDLER( tms5110_pdc_w ) { struct tms5110_info *info = sndti_token(SOUND_TMS5110, 0); |