sim: m68hc11: fix -Wimplicit-fallthrough warnings
Seems like these register operations intended on falling thru.
This commit is contained in:
parent
aab7152186
commit
452bfb00b5
2 changed files with 2 additions and 0 deletions
|
@ -523,6 +523,7 @@ m68hc11sio_io_read_buffer (struct hw *me,
|
|||
case M6811_SCSR:
|
||||
controller->rx_clear_scsr = m68hc11_cpu->ios[M6811_SCSR]
|
||||
& (M6811_RDRF | M6811_IDLE | M6811_OR | M6811_NF | M6811_FE);
|
||||
ATTRIBUTE_FALLTHROUGH;
|
||||
|
||||
case M6811_BAUD:
|
||||
case M6811_SCCR1:
|
||||
|
|
|
@ -405,6 +405,7 @@ m68hc11spi_io_read_buffer (struct hw *me,
|
|||
case M6811_SPSR:
|
||||
controller->rx_clear_scsr = m68hc11_cpu->ios[M6811_SCSR]
|
||||
& (M6811_SPIF | M6811_WCOL | M6811_MODF);
|
||||
ATTRIBUTE_FALLTHROUGH;
|
||||
|
||||
case M6811_SPCR:
|
||||
val = m68hc11_cpu->ios[base];
|
||||
|
|
Loading…
Add table
Reference in a new issue