summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2013-02-09 01:58:23 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2013-02-09 01:58:23 +0000
commitc4fbee1e1640fae9c269eb9d2cdad6770e759ecf (patch)
treed59d3bf2e50e0af5d390e47edb6f73cbc14fa64f
parent28183799396f59449d82c7a1299426cd140d85f8 (diff)
Save state support for the 3 aux slot cards (nw)
-rw-r--r--src/mess/machine/a2eext80col.c1
-rw-r--r--src/mess/machine/a2eramworks3.c2
-rw-r--r--src/mess/machine/a2estd80col.c1
3 files changed, 4 insertions, 0 deletions
diff --git a/src/mess/machine/a2eext80col.c b/src/mess/machine/a2eext80col.c
index 5649636f349..e13057f8910 100644
--- a/src/mess/machine/a2eext80col.c
+++ b/src/mess/machine/a2eext80col.c
@@ -46,6 +46,7 @@ a2eaux_ext80col_device::a2eaux_ext80col_device(const machine_config &mconfig, de
void a2eaux_ext80col_device::device_start()
{
set_a2eauxslot_device();
+ save_item(NAME(m_ram));
}
void a2eaux_ext80col_device::device_reset()
diff --git a/src/mess/machine/a2eramworks3.c b/src/mess/machine/a2eramworks3.c
index a065e348726..04023bf7153 100644
--- a/src/mess/machine/a2eramworks3.c
+++ b/src/mess/machine/a2eramworks3.c
@@ -47,6 +47,8 @@ a2eaux_ramworks3_device::a2eaux_ramworks3_device(const machine_config &mconfig,
void a2eaux_ramworks3_device::device_start()
{
set_a2eauxslot_device();
+ save_item(NAME(m_ram));
+ save_item(NAME(m_bank));
}
void a2eaux_ramworks3_device::device_reset()
diff --git a/src/mess/machine/a2estd80col.c b/src/mess/machine/a2estd80col.c
index 00523d6771b..92b6d90b4e9 100644
--- a/src/mess/machine/a2estd80col.c
+++ b/src/mess/machine/a2estd80col.c
@@ -46,6 +46,7 @@ a2eaux_std80col_device::a2eaux_std80col_device(const machine_config &mconfig, de
void a2eaux_std80col_device::device_start()
{
set_a2eauxslot_device();
+ save_item(NAME(m_ram));
}
void a2eaux_std80col_device::device_reset()