summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mips/mips3.cpp
diff options
context:
space:
mode:
author therealmogminer@gmail.com <therealmogminer@gmail.com>2016-06-08 20:43:41 +0200
committer therealmogminer@gmail.com <therealmogminer@gmail.com>2016-06-08 20:43:59 +0200
commit0ae82382cbffe288df9f0902666c60139d1d0520 (patch)
tree6e6ed976f2518f4d01adeba3a42782758f76610a /src/devices/cpu/mips/mips3.cpp
parenta3af73bafcac0f94de44430b6e2b521aac5481a9 (diff)
Fix build on MSVC thanks to Rene, also fix debug_break crashes
Diffstat (limited to 'src/devices/cpu/mips/mips3.cpp')
-rw-r--r--src/devices/cpu/mips/mips3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/mips/mips3.cpp b/src/devices/cpu/mips/mips3.cpp
index f2b3252620e..73b5974bab7 100644
--- a/src/devices/cpu/mips/mips3.cpp
+++ b/src/devices/cpu/mips/mips3.cpp
@@ -224,7 +224,7 @@ void mips3_device::generate_exception(int exception, int backup)
if (exception != 0)
{
fprintf(stderr, "Exception: PC=%08X, PPC=%08X\n", m_core->pc, m_ppc);
- machine().debugger().debug_break();
+ machine().debug_break();
}
*/