summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/i386/pentops.c
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2010-03-17 11:59:16 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2010-03-17 11:59:16 +0000
commitc02b195ede2a899f2e3312c03d09ac1ff3ae9a50 (patch)
tree11524a805092d0e91a33cca7d4cc27012b058205 /src/emu/cpu/i386/pentops.c
parent0bc5acacbcac6caecc16bf6bc4beaefe151f5d5b (diff)
several cleanups based on cppcheck and VS2008 Code Analysis [Oliver Stöneberg]
split.c: made the "split" return the actual result instead of just 0. [Oliver Stöneberg] clifront.c: made the identation of the CPU device in -listdevices the same like the others [Oliver Stöneberg] i386.c: gave some fatalerror() calls in the i386 proper messages [Oliver Stöneberg] ssem.c: fixed compilation of SSEM core with SSEM_DISASM_ON_UNIMPL [Oliver Stöneberg] srcclean.c: small wording change in the srcclean summary [Oliver Stöneberg] sdl/window.c: fixed a potential memory leak in sdlwindow_video_window_create() [Oliver Stöneberg]
Diffstat (limited to 'src/emu/cpu/i386/pentops.c')
-rw-r--r--src/emu/cpu/i386/pentops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/i386/pentops.c b/src/emu/cpu/i386/pentops.c
index 6a6ee1aa187..42931ca6ba4 100644
--- a/src/emu/cpu/i386/pentops.c
+++ b/src/emu/cpu/i386/pentops.c
@@ -30,7 +30,7 @@ static void PENTIUMOP(cmpxchg8b_m64)(i386_state *cpustate) // Opcode 0x0f c7
{
UINT8 modm = FETCH(cpustate);
if( modm >= 0xc0 ) {
- fatalerror("invalid modm");
+ fatalerror("pentium: cmpxchg8b_m64 - invalid modm");
} else {
UINT32 ea = GetEA(cpustate,modm);
UINT64 value = READ64(cpustate,ea);