1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Shuffle list slightly.

This commit is contained in:
Thomas Harte 2023-09-26 17:30:27 -04:00
parent b03b408984
commit 5368f789f6

View File

@ -516,13 +516,13 @@ constexpr bool supports(Operation operation, Repetition repetition) {
case Operation::INS:
case Operation::OUTS:
case Operation::LODS:
return repetition == Repetition::RepE;
case Operation::STOS:
case Operation::MOVS:
case Operation::CMPS:
case Operation::LODS:
case Operation::MOVS:
case Operation::SCAS:
case Operation::STOS:
return true;
case Operation::IDIV: