summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m68000/m68kfpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m68000/m68kfpu.cpp')
-rw-r--r--src/devices/cpu/m68000/m68kfpu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m68000/m68kfpu.cpp b/src/devices/cpu/m68000/m68kfpu.cpp
index 3a2ec85e0ee..655ebfbe776 100644
--- a/src/devices/cpu/m68000/m68kfpu.cpp
+++ b/src/devices/cpu/m68000/m68kfpu.cpp
@@ -1748,7 +1748,7 @@ void m68000_base_device::fmovem(u16 w2)
case 1: // Dynamic register list, postincrement or control addressing mode.
// FIXME: not really tested, but seems to work
reglist = REG_D()[(reglist >> 4) & 7];
-
+ [[fallthrough]];
case 0: // Static register list, predecrement or control addressing mode
{
for (i=0; i < 8; i++)
@@ -1807,7 +1807,7 @@ void m68000_base_device::fmovem(u16 w2)
case 3: // Dynamic register list, predecrement addressing mode.
// FIXME: not really tested, but seems to work
reglist = REG_D()[(reglist >> 4) & 7];
-
+ [[fallthrough]];
case 2: // Static register list, postincrement or control addressing mode
{
for (i=0; i < 8; i++)