summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2015-06-04 22:31:47 +0200
committer Ivan Vangelista <mesgnet@yahoo.it>2015-06-04 22:31:47 +0200
commit0a794fd6ced96ea40653167af5877cc28c8c0db3 (patch)
tree457dadfe1a38e56aadbfa4746500eb2fd308e0db /src/emu/sound
parent786e826c38cf302024c981b797c5e6b9c68f809c (diff)
srmp5.c: added save state support (nw)
Diffstat (limited to 'src/emu/sound')
-rw-r--r--src/emu/sound/st0016.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/emu/sound/st0016.c b/src/emu/sound/st0016.c
index 4c75f3f7b02..d62332496cb 100644
--- a/src/emu/sound/st0016.c
+++ b/src/emu/sound/st0016.c
@@ -45,6 +45,11 @@ void st0016_device::device_start()
{
m_stream = stream_alloc(0, 2, 44100);
m_ram_read_cb.resolve_safe(0);
+
+ save_item(NAME(m_vpos));
+ save_item(NAME(m_frac));
+ save_item(NAME(m_lponce));
+ save_item(NAME(m_regs));
}