diff options
author | 2020-07-04 13:44:14 +0200 | |
---|---|---|
committer | 2020-07-04 13:44:14 +0200 | |
commit | 5469e30f3c19e41cfef1e2021236e0203521aefa (patch) | |
tree | 120e74631a83c01719da3cb8d08cc89d89f6e823 /src/devices/cpu/h8/h8_dma.cpp | |
parent | 207fd27e8cf8030176b08f5f5e56e747284c3f2f (diff) |
devices/cpu/h8/h8dma, devices/machine/generalplus_gpl16250soc, devices/machine/spg110_video: initialize some variables which were causing malfunctions in debug devnoclear builds (nw)
Diffstat (limited to 'src/devices/cpu/h8/h8_dma.cpp')
-rw-r--r-- | src/devices/cpu/h8/h8_dma.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/cpu/h8/h8_dma.cpp b/src/devices/cpu/h8/h8_dma.cpp index c295b77f330..7687de7a68d 100644 --- a/src/devices/cpu/h8/h8_dma.cpp +++ b/src/devices/cpu/h8/h8_dma.cpp @@ -154,6 +154,7 @@ void h8_dma_channel_device::device_reset() mar[0] = mar[1] = 0; ioar[0] = ioar[1] = 0; etcr[0] = etcr[1] = 0; + dtcr[0] = dtcr[1] = 0; fae = sae = false; dta = dte = dtie = 0; } |