summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/h8/h8make.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/h8/h8make.py')
-rw-r--r--src/devices/cpu/h8/h8make.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/cpu/h8/h8make.py b/src/devices/cpu/h8/h8make.py
index 99883e92c2a..e89bc6ff725 100644
--- a/src/devices/cpu/h8/h8make.py
+++ b/src/devices/cpu/h8/h8make.py
@@ -82,6 +82,7 @@ def save_partial_one(f, t, name, source):
for line in source:
if has_memory(line):
print("\tif(icount <= bcount) { inst_substate = %d; return; }" % substate, file=f)
+ print("\t[[fallthrough]];", file=f)
print("case %d:;" % substate, file=f)
print(line, file=f)
substate += 1