From e862e026cb168602196c340cba62bacd101bd54f Mon Sep 17 00:00:00 2001 From: cracyc Date: Sun, 9 Apr 2017 20:20:43 -0500 Subject: i386: ignore float exceptions in debugger (nw) --- src/devices/cpu/i386/i386.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/cpu/i386/i386.cpp b/src/devices/cpu/i386/i386.cpp index 470e71c366a..43d5237f64c 100644 --- a/src/devices/cpu/i386/i386.cpp +++ b/src/devices/cpu/i386/i386.cpp @@ -3569,6 +3569,7 @@ void i386_device::state_string_export(const device_state_entry &entry, std::stri str = string_format("%08x%08x%08x%08x", XMM(7).d[3], XMM(7).d[2], XMM(7).d[1], XMM(7).d[0]); break; } + float_exception_flags = 0; // kill any float exceptions that occur here } void i386_device::build_opcode_table(uint32_t features) -- cgit v1.2.3