summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/pci-ide.cpp
diff options
context:
space:
mode:
author Ted Green <tedgreen99@protonmail.com>2017-05-03 14:02:24 -0600
committer Ted Green <tedgreen99@protonmail.com>2017-05-03 14:03:16 -0600
commit31146b1c9ad1ba001383e49b38c00b32aa4d0909 (patch)
treec6148c4f6174a2efc04c7a6c15375c70d5735842 /src/devices/machine/pci-ide.cpp
parent7c72a2f441cd63a41dc78b7f396d453fd0b9c1ae (diff)
Start adding save state support to atlantis driver. (nw)
Diffstat (limited to 'src/devices/machine/pci-ide.cpp')
-rw-r--r--src/devices/machine/pci-ide.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/machine/pci-ide.cpp b/src/devices/machine/pci-ide.cpp
index b96823e7beb..8dfad515dd4 100644
--- a/src/devices/machine/pci-ide.cpp
+++ b/src/devices/machine/pci-ide.cpp
@@ -95,6 +95,11 @@ void ide_pci_device::device_start()
intr_pin = 0x1;
intr_line = 0xe;
+
+ // Save states
+ save_item(NAME(pci_bar));
+ save_item(NAME(m_config_data));
+
}
void ide_pci_device::device_reset()