summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/dspp/dsppdrc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/dspp/dsppdrc.cpp')
-rw-r--r--src/devices/cpu/dspp/dsppdrc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/dspp/dsppdrc.cpp b/src/devices/cpu/dspp/dsppdrc.cpp
index 947c698576f..30be59db09b 100644
--- a/src/devices/cpu/dspp/dsppdrc.cpp
+++ b/src/devices/cpu/dspp/dsppdrc.cpp
@@ -501,10 +501,10 @@ void dspp_device::generate_set_rbase(drcuml_block &block, compiler_state *compil
case 0:
UML_MOV(block, mem(&m_core->m_rbase[0]), addr);
UML_MOV(block, mem(&m_core->m_rbase[1]), addr + 4 - base);
- // Intentional fall-through
+ [[fallthrough]];
case 8:
UML_MOV(block, mem(&m_core->m_rbase[2]), addr + 8 - base);
- // Intentional fall-through
+ [[fallthrough]];
case 12:
UML_MOV(block, mem(&m_core->m_rbase[3]), addr + 12 - base);
break;