You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The constants.isa_regex requires the sub-extensions (Z..., S...) to immediately follow the main extensions without a separating underscore. For example this is considered valid:
RV32IMAFCSUZicsr_Zifencei_Zba_Zbb_Zbs
But this is not:
RV32IMAFCSU_Zicsr_Zifencei_Zba_Zbb_Zbs
Both are legal according to the spec. The latter is also easier to read and generate.
The text was updated successfully, but these errors were encountered:
The
constants.isa_regex
requires the sub-extensions (Z..., S...) to immediately follow the main extensions without a separating underscore. For example this is considered valid:But this is not:
Both are legal according to the spec. The latter is also easier to read and generate.
The text was updated successfully, but these errors were encountered: