We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
print outputs numbers in decimal.
print
The SimCoupe debugger and the map file are all hexadecimal.
Unfortunately parse_expression does not like having a hex function inserted, so I cannot:
parse_expression
print hex($)
I tried allowing for hex in parse_expression and failed: error: Opcode not recognised
hex
So for now I will just modify line 766 to text.append(str(hex(a)))
text.append(str(hex(a)))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
print
outputs numbers in decimal.The SimCoupe debugger and the map file are all hexadecimal.
Unfortunately
parse_expression
does not like having a hex function inserted, so I cannot:print hex($)
I tried allowing for
hex
inparse_expression
and failed: error: Opcode not recognisedSo for now I will just modify line 766 to
text.append(str(hex(a)))
The text was updated successfully, but these errors were encountered: