summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2011-09-05 06:37:03 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2011-09-05 06:37:03 +0000
commitc0db0605af7607c901b69e2e7bce3178cbbbf2d1 (patch)
treee2fdaa13a5683f5d164d83a8342cc98a5d5f0a6a
parentc974f35d6977d4f0c77abce051712ebfcd731fbe (diff)
(confusing use of 'fatal')
-rw-r--r--src/emu/cpu/m37710/m37710op.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/m37710/m37710op.h b/src/emu/cpu/m37710/m37710op.h
index 897ef359486..32c43453776 100644
--- a/src/emu/cpu/m37710/m37710op.h
+++ b/src/emu/cpu/m37710/m37710op.h
@@ -904,7 +904,7 @@ INLINE uint EA_SIY(m37710i_cpu_struct *cpustate) {return MAKE_UINT_16(read_16_
#undef OP_BRK
#define OP_BRK() \
REG_PC++; CLK(CLK_OP + CLK_R8 + CLK_IMM + 5); \
- logerror("fatalerror M37710: BRK at PC=%06x", REG_PB|REG_PC); \
+ logerror("error M37710: BRK at PC=%06x\n", REG_PB|REG_PC); \
m37710i_interrupt_software(cpustate, 0xfffa)
/* M37710 Branch Always */
@@ -2279,7 +2279,7 @@ INLINE uint EA_SIY(m37710i_cpu_struct *cpustate) {return MAKE_UINT_16(read_16_
/* M37710 unimplemented opcode */
#undef OP_UNIMP
#define OP_UNIMP() \
- logerror("fatalerror: M37710: UNIMPLEMENTED OPCODE! K=%x PC=%x", REG_PB, REG_PPC);
+ logerror("error M37710: UNIMPLEMENTED OPCODE! K=%x PC=%x\n", REG_PB, REG_PPC);
/* M37710 load data bank register */
#undef OP_LDTAAA