summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/tms32031/32031ops.hxx
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/tms32031/32031ops.hxx
parenta3af73bafcac0f94de44430b6e2b521aac5481a9 (diff)
Fix build on MSVC thanks to Rene, also fix debug_break crashes
Diffstat (limited to 'src/devices/cpu/tms32031/32031ops.hxx')
-rw-r--r--src/devices/cpu/tms32031/32031ops.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/tms32031/32031ops.hxx b/src/devices/cpu/tms32031/32031ops.hxx
index 49af48fbe04..60f2ab5d07f 100644
--- a/src/devices/cpu/tms32031/32031ops.hxx
+++ b/src/devices/cpu/tms32031/32031ops.hxx
@@ -74,7 +74,7 @@ void tms3203x_device::illegal(UINT32 op)
if ((machine().debug_flags & DEBUG_FLAG_ENABLED) != 0)
{
logerror("Illegal op @ %06X: %08X (tbl=%03X)\n", m_pc - 1, op, op >> 21);
- machine().debugger().debug_break();
+ machine().debug_break();
}
}