summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2013-02-16 15:57:29 +0000
committer Oliver Stöneberg <firewave@users.noreply.github.com>2013-02-16 15:57:29 +0000
commit87a550835c043a60c25069435af32ab2a0ed2cb4 (patch)
treee05f96fd2d438f130d9138a15bf958b7aa477a95 /src
parent16445c10788511c68f0793a246cfa7ce175c8c10 (diff)
fixed uninitialized variable in src/emu/cpu/cosmac/cosmac.c (nw)
Diffstat (limited to 'src')
-rw-r--r--src/emu/cpu/cosmac/cosmac.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/cpu/cosmac/cosmac.c b/src/emu/cpu/cosmac/cosmac.c
index e2a1cfa1870..83b4bbc93ee 100644
--- a/src/emu/cpu/cosmac/cosmac.c
+++ b/src/emu/cpu/cosmac/cosmac.c
@@ -304,6 +304,7 @@ void cosmac_device::device_start()
void cosmac_device::device_reset()
{
+ m_ie = 0;
}