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
Expressions with hex characters in uppercase cause assembly to fail with the error ValueError: Unsupported expression.
Expected behaviour:
The expected behaviour is that uppercase hex characters are treated identically to lower case hex characters.
Example:
This code fails to assemble with "Unsupported expression"
entry:
move r0, 0x7FE - 1
While this code is successfully assembled without error:
entry:
move r0, 0x7fe - 1
The only difference in the two code snippets is the hex value 0x7FE being upper case in one example (the failing one) and lower case in the other (the successful one).
The text was updated successfully, but these errors were encountered:
Current behaviour:
Expressions with hex characters in uppercase cause assembly to fail with the error
ValueError: Unsupported expression
.Expected behaviour:
The expected behaviour is that uppercase hex characters are treated identically to lower case hex characters.
Example:
This code fails to assemble with "Unsupported expression"
While this code is successfully assembled without error:
The only difference in the two code snippets is the hex value 0x7FE being upper case in one example (the failing one) and lower case in the other (the successful one).
The text was updated successfully, but these errors were encountered: