diff options
author | 2012-09-08 10:57:54 +0000 | |
---|---|---|
committer | 2012-09-08 10:57:54 +0000 | |
commit | 1a391dd0442a66cc53cfed2b39fd753751e8039a (patch) | |
tree | 2bc17cfea678c3504d9377ea81cbdf96fa7d7c24 /src/emu/cpu/sh4/sh4comn.c | |
parent | e0445d78251b5d2d4b88373a218af5a78e6556df (diff) |
fixed some warnings about unreachable statements reported by cppcheck (no whatsnew)
Diffstat (limited to 'src/emu/cpu/sh4/sh4comn.c')
-rw-r--r-- | src/emu/cpu/sh4/sh4comn.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/emu/cpu/sh4/sh4comn.c b/src/emu/cpu/sh4/sh4comn.c index 6b88909d26a..8776cd38520 100644 --- a/src/emu/cpu/sh4/sh4comn.c +++ b/src/emu/cpu/sh4/sh4comn.c @@ -911,13 +911,10 @@ READ32_HANDLER( sh4_internal_r ) { case VERSION: return PVR_SH7091; // 0x040205c1, this is what a real SH7091 in a Dreamcast returns - the later Naomi BIOSes check and care! - break; case PRR: return 0; - break; case IPRD: return 0x00000000; // SH7750 ignores writes here and always returns zero - break; case RTCNT: if ((sh4->m[RTCSR] >> 3) & 7) { // activated @@ -927,7 +924,6 @@ READ32_HANDLER( sh4_internal_r ) } else return sh4->m[RTCNT]; - break; /********************************************************************************************************************* INTC (Interrupt Controller) |