Skip to content

Commit

Permalink
Merge pull request #260 from QuTech-Delft/fix-instruction-set-types-b…
Browse files Browse the repository at this point in the history
…ased-off-develop

Fix instruction set types.
  • Loading branch information
rturrado authored Oct 16, 2024
2 parents 99c8a71 + 4fad184 commit fccb90e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/v3x/instruction_set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ InstructionSet::InstructionSet()
{ "CR", { 'f', "QV" } },
{ "CR", { 'f', "VQ" } },
{ "CR", { 'f', "VV" } },
{ "CRk", { std::nullopt, "QQ" } },
{ "CRk", { std::nullopt, "QV" } },
{ "CRk", { std::nullopt, "VQ" } },
{ "CRk", { std::nullopt, "VV" } },
{ "CZ", { 'i', "QQ" } },
{ "CZ", { 'i', "QV" } },
{ "CZ", { 'i', "VQ" } },
{ "CZ", { 'i', "VV" } },
{ "CRk", { 'i', "QQ" } },
{ "CRk", { 'i', "QV" } },
{ "CRk", { 'i', "VQ" } },
{ "CRk", { 'i', "VV" } },
{ "CZ", { std::nullopt, "QQ" } },
{ "CZ", { std::nullopt, "QV" } },
{ "CZ", { std::nullopt, "VQ" } },
{ "CZ", { std::nullopt, "VV" } },
{ "H", { std::nullopt, "Q" } },
{ "H", { std::nullopt, "V" } },
{ "I", { std::nullopt, "Q" } },
Expand Down

0 comments on commit fccb90e

Please sign in to comment.