Skip to content

Commit

Permalink
Fix ordering of B single-letter extension
Browse files Browse the repository at this point in the history
The canonical order is IMAFDQLCBKJTPVH

Signed-off-by: Jerry Zhao <[email protected]>
  • Loading branch information
jerryz123 authored Aug 11, 2024
1 parent 6f28e4b commit 9031c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion disasm/isa_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static void bad_priv_string(const char* priv)
isa_parser_t::isa_parser_t(const char* str, const char *priv)
{
isa_string = strtolower(str);
const char* all_subsets = "mafdqcpvhb";
const char* all_subsets = "mafdqcbpvh";

if (isa_string.compare(0, 4, "rv32") == 0)
max_xlen = 32;
Expand Down

0 comments on commit 9031c7b

Please sign in to comment.