From c4fbee1e1640fae9c269eb9d2cdad6770e759ecf Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Sat, 9 Feb 2013 01:58:23 +0000 Subject: [PATCH] Save state support for the 3 aux slot cards (nw) --- src/mess/machine/a2eext80col.c | 1 + src/mess/machine/a2eramworks3.c | 2 ++ src/mess/machine/a2estd80col.c | 1 + 3 files changed, 4 insertions(+) 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()