diff options
author | 2008-01-25 06:17:54 +0000 | |
---|---|---|
committer | 2008-01-25 06:17:54 +0000 | |
commit | 877b75ad75a758d62b158af6688a88f5f61c8860 (patch) | |
tree | e0c65bad64ff11855e55f4ea1c0a68f469befd93 /src/emu/sound/tms5110.c | |
parent | 97cf740a235be17223e44f5fb7f4c56f729c3e8d (diff) |
Cleanups and version bump to 0.122u7.mame0122u7
Diffstat (limited to 'src/emu/sound/tms5110.c')
-rw-r--r-- | src/emu/sound/tms5110.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/sound/tms5110.c b/src/emu/sound/tms5110.c index 7dbf0a1c852..d298cc7b26e 100644 --- a/src/emu/sound/tms5110.c +++ b/src/emu/sound/tms5110.c @@ -89,7 +89,7 @@ struct tms5110 /* coefficient tables */ const struct tms5100_coeffs *coeff; - + /* these contain data that describes the 64 bits FIFO */ UINT8 fifo[FIFO_SIZE]; UINT8 fifo_head; @@ -174,16 +174,16 @@ void tms5110_set_variant(void *chip, int variant) tms->variant = variant; } - + void *tms5110_create(int index, int variant) { struct tms5110 *tms; tms = malloc_or_die(sizeof(*tms)); memset(tms, 0, sizeof(*tms)); - + tms5110_set_variant(tms, variant); - + state_save_register_item_array("tms5110", index, tms->fifo); state_save_register_item("tms5110", index, tms->fifo_head); state_save_register_item("tms5110", index, tms->fifo_tail); |