summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/avr8/avr8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/avr8/avr8.cpp')
-rw-r--r--src/devices/cpu/avr8/avr8.cpp28
1 files changed, 4 insertions, 24 deletions
diff --git a/src/devices/cpu/avr8/avr8.cpp b/src/devices/cpu/avr8/avr8.cpp
index 62460f94f8f..fbde839982e 100644
--- a/src/devices/cpu/avr8/avr8.cpp
+++ b/src/devices/cpu/avr8/avr8.cpp
@@ -795,30 +795,10 @@ void avr8_device::device_start()
// register our state for saving
save_item(NAME(m_pc));
save_item(NAME(m_r));
- save_item(NAME(m_timer_top[0]));
- save_item(NAME(m_timer_increment[0]));
- save_item(NAME(m_timer_prescale[0]));
- save_item(NAME(m_timer_prescale_count[0]));
- save_item(NAME(m_timer_top[1]));
- save_item(NAME(m_timer_increment[1]));
- save_item(NAME(m_timer_prescale[1]));
- save_item(NAME(m_timer_prescale_count[1]));
- save_item(NAME(m_timer_top[2]));
- save_item(NAME(m_timer_increment[2]));
- save_item(NAME(m_timer_prescale[2]));
- save_item(NAME(m_timer_prescale_count[2]));
- save_item(NAME(m_timer_top[3]));
- save_item(NAME(m_timer_increment[3]));
- save_item(NAME(m_timer_prescale[3]));
- save_item(NAME(m_timer_prescale_count[3]));
- save_item(NAME(m_timer_top[4]));
- save_item(NAME(m_timer_increment[4]));
- save_item(NAME(m_timer_prescale[4]));
- save_item(NAME(m_timer_prescale_count[4]));
- save_item(NAME(m_timer_top[5]));
- save_item(NAME(m_timer_increment[5]));
- save_item(NAME(m_timer_prescale[5]));
- save_item(NAME(m_timer_prescale_count[5]));
+ save_item(NAME(m_timer_top));
+ save_item(NAME(m_timer_increment));
+ save_item(NAME(m_timer_prescale));
+ save_item(NAME(m_timer_prescale_count));
save_item(NAME(m_addr_mask));
save_item(NAME(m_interrupt_pending));
save_item(NAME(m_elapsed_cycles));