summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sm8500/sm8500.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/sm8500/sm8500.cpp')
-rw-r--r--src/devices/cpu/sm8500/sm8500.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/sm8500/sm8500.cpp b/src/devices/cpu/sm8500/sm8500.cpp
index 13b32447714..11fc61132fc 100644
--- a/src/devices/cpu/sm8500/sm8500.cpp
+++ b/src/devices/cpu/sm8500/sm8500.cpp
@@ -198,9 +198,9 @@ void sm8500_cpu_device::state_string_export(const device_state_entry &entry, std
void sm8500_cpu_device::device_reset()
{
- for ( int i = 0; i < 0x108; i++ )
+ for (auto & elem : m_register_ram)
{
- m_register_ram[i] = 0;
+ elem = 0;
}
m_PC = 0x1020;