summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8325.cpp
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2024-02-07 22:57:58 +0100
committer hap <happppp@users.noreply.github.com>2024-02-07 22:58:24 +0100
commit607e2c165a0348dc142dd26fc5d1242707ebc1b4 (patch)
tree9cbffd6de52aaa8a835fab3f8cf48805439373ff /src/devices/cpu/h8/h8325.cpp
parent16582cf7f20a9589cf03259945c16ab11c3e5a25 (diff)
New working systems
------------------- Kasparov Turbo S-24K [hap, Berger]
Diffstat (limited to 'src/devices/cpu/h8/h8325.cpp')
-rw-r--r--src/devices/cpu/h8/h8325.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/cpu/h8/h8325.cpp b/src/devices/cpu/h8/h8325.cpp
index c47d294bc5f..28efafd6ce4 100644
--- a/src/devices/cpu/h8/h8325.cpp
+++ b/src/devices/cpu/h8/h8325.cpp
@@ -181,6 +181,7 @@ void h8325_device::internal_update(uint64_t current_time)
void h8325_device::device_start()
{
h8_device::device_start();
+ save_item(NAME(m_syscr));
}
void h8325_device::device_reset()
@@ -202,5 +203,7 @@ void h8325_device::syscr_w(uint8_t data)
uint8_t h8325_device::mdcr_r()
{
+ if(!machine().side_effects_disabled())
+ logerror("mdcr_r\n");
return 0xe7;
}