summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-06-07 23:22:49 -0400
committer arbee <rb6502@users.noreply.github.com>2021-06-07 23:22:49 -0400
commitbe67f24af0e88e5d35f3e123a8f6fc00b330b782 (patch)
tree2d5528a59e4db4c648df3adf75e7b5b40279075d
parent60c3d14cf6932af876e7bc5ba0e0b46d717ed061 (diff)
m68kfpu: fix missing break statements [R. Belmont]
-rw-r--r--src/devices/cpu/m68000/m68kfpu.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/cpu/m68000/m68kfpu.cpp b/src/devices/cpu/m68000/m68kfpu.cpp
index 9d0bd52111a..0c56dc5ed39 100644
--- a/src/devices/cpu/m68000/m68kfpu.cpp
+++ b/src/devices/cpu/m68000/m68kfpu.cpp
@@ -1524,6 +1524,7 @@ void m68000_base_device::fpgen_rm_reg(u16 w2)
m_fpr[dst] = getman(source);
SET_CONDITION_CODES(m_fpr[dst]);
m_icount -= 31;
+ break;
}
case 0x60: // FSDIVS
case 0x20: // FDIV
@@ -1608,6 +1609,7 @@ void m68000_base_device::fpgen_rm_reg(u16 w2)
m_fpr[(w2 & 0x7)] = source;
floatx80_fcos(m_fpr[(w2 & 0x7)]);
m_icount -= 451;
+ break;
}
case 0x38: // FCMP
{