summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/i8271.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/i8271.cpp')
-rw-r--r--src/devices/machine/i8271.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/devices/machine/i8271.cpp b/src/devices/machine/i8271.cpp
index f70f1395f66..529a21b9b5d 100644
--- a/src/devices/machine/i8271.cpp
+++ b/src/devices/machine/i8271.cpp
@@ -754,12 +754,14 @@ void i8271_device::start_command(int cmd)
switch(cmd) {
case C_READ_DATA_SINGLE:
command[3] = 1;
+ [[fallthrough]];
case C_READ_DATA_MULTI:
read_data_start(flopi[BIT(command[0], 7)]);
break;
case C_VERIFY_DATA_SINGLE:
command[3] = 1;
+ [[fallthrough]];
case C_VERIFY_DATA_MULTI:
verify_data_start(flopi[BIT(command[0], 7)]);
break;
@@ -817,6 +819,7 @@ void i8271_device::start_command(int cmd)
case C_WRITE_DATA_SINGLE:
command[3] = 1;
+ [[fallthrough]];
case C_WRITE_DATA_MULTI:
write_data_start(flopi[BIT(command[0], 7)]);
break;