1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-07-25 13:24:23 +00:00

Adds further [[fallthrough]] attributes.

This commit is contained in:
Thomas Harte
2020-06-19 23:36:51 -04:00
parent 240d3c482b
commit 2477752fa4
9 changed files with 12 additions and 3 deletions

View File

@@ -833,7 +833,8 @@ template < class T,
// MARK: - Special-case Flow
case MicroOp::BeginIRQMode0:
pc_increment_ = 0; // deliberate fallthrough
pc_increment_ = 0;
[[fallthrough]];
case MicroOp::BeginIRQ:
iff2_ = iff1_ = false;
request_status_ &= ~Interrupt::IRQ;