summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2009-02-16 18:24:48 +0000
committer Aaron Giles <aaron@aarongiles.com>2009-02-16 18:24:48 +0000
commitc1c2fc33b39881fd53eb0c63271cd1db397491fe (patch)
tree3eec9c377f17b118cf5168162fce088cc3380b9c
parent51b90f0e859a484c7f8408bed297b3928de5be34 (diff)
Changed aborts() to fatalerror() so they don't foul up the regression test runs.
-rw-r--r--src/emu/cpu/tms57002/tms57002.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/emu/cpu/tms57002/tms57002.c b/src/emu/cpu/tms57002/tms57002.c
index 214484d3004..1d30b5b031c 100644
--- a/src/emu/cpu/tms57002/tms57002.c
+++ b/src/emu/cpu/tms57002/tms57002.c
@@ -997,7 +997,7 @@ static void tms57002_execute_cat1(tms57002_t *s, UINT32 opcode)
#undef INTRP1
default:
- abort();
+ fatalerror("Unhandled case in tms57002_execute_cat1");
}
}
@@ -1012,7 +1012,7 @@ static void tms57002_execute_cat2_pre(tms57002_t *s, UINT32 opcode)
#undef INTRP2A
default:
- abort();
+ fatalerror("Unhandled case in tms57002_execute_cat2_pre");
}
}
@@ -1028,7 +1028,7 @@ static void tms57002_execute_cat2_post(tms57002_t *s, UINT32 opcode)
#undef INTRP2B
default:
- abort();
+ fatalerror("Unhandled case in tms57002_execute_cat2_post");
}
}
@@ -1043,7 +1043,7 @@ static void tms57002_execute_cat3(tms57002_t *s, UINT32 opcode)
#undef INTRP3
default:
- abort();
+ fatalerror("Unhandled case in tms57002_execute_cat3");
}
}
@@ -1165,7 +1165,7 @@ static void tms57002_decode_cat1(tms57002_t *s, UINT32 opcode, unsigned short *o
#undef CDEC1
default:
- abort();
+ fatalerror("Unhandled case in tms57002_decode_cat1");
}
}
@@ -1180,7 +1180,7 @@ static void tms57002_decode_cat2_pre(tms57002_t *s, UINT32 opcode, unsigned shor
#undef CDEC2A
default:
- abort();
+ fatalerror("Unhandled case in tms57002_decode_cat2_pre");
}
}
@@ -1195,7 +1195,7 @@ static void tms57002_decode_cat2_post(tms57002_t *s, UINT32 opcode, unsigned sho
#undef CDEC2B
default:
- abort();
+ fatalerror("Unhandled case in tms57002_decode_cat2_post");
}
}
@@ -1210,7 +1210,7 @@ static void tms57002_decode_cat3(tms57002_t *s, UINT32 opcode, unsigned short *o
#undef CDEC3
default:
- abort();
+ fatalerror("Unhandled case in tms57002_decode_cat3");
}
}
@@ -1353,7 +1353,7 @@ static CPU_EXECUTE(tms57002)
#undef CINTRP
default:
- abort();
+ fatalerror("Unhandled opcode in tms57002_execute");
}
}
inst: