diff options
author | 2016-06-28 11:11:32 -0400 | |
---|---|---|
committer | 2016-06-28 11:11:32 -0400 | |
commit | cbd10b88c576663815fc0f977658edfb04a2dda5 (patch) | |
tree | dd55585fbee3015211772ebaaac5d43e886e0477 /src/devices/machine/pdc.cpp | |
parent | 1eff375d32f22c4d163bcb274fdbdda25d6b2037 (diff) |
r9751: Add save state support, document progress, and clean up
Diffstat (limited to 'src/devices/machine/pdc.cpp')
-rw-r--r-- | src/devices/machine/pdc.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/devices/machine/pdc.cpp b/src/devices/machine/pdc.cpp index b28d6c8e508..b993531a14b 100644 --- a/src/devices/machine/pdc.cpp +++ b/src/devices/machine/pdc.cpp @@ -324,6 +324,19 @@ pdc_device::pdc_device(const machine_config &mconfig, const char *tag, device_t void pdc_device::device_start() { + + /* Save States */ + save_item(NAME(reg_p0)); + save_item(NAME(reg_p1)); + save_item(NAME(reg_p2)); + save_item(NAME(reg_p3)); + save_item(NAME(reg_p4)); + save_item(NAME(reg_p5)); + save_item(NAME(reg_p6)); + save_item(NAME(reg_p7)); + save_item(NAME(reg_p21)); + save_item(NAME(reg_p38)); + save_item(NAME(fdd_68k_dma_address)); } //------------------------------------------------- |