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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
So in 6502 asm we use '<' '>' and '^' to denote high, low and top bytes.
eg
var a = #<$abcd ; equals 0xab
But I also need to be able to support greater\less than.
var b = 1 var a = #<(b < 5 ? $abcd : $1234) ; should also equal 0xab
It feels like these are 'unary operators' but they seem to be handled in a very unique way, and not definable by extending the class?
Does anyone know if there is there a more cunning way, or do I need to hack up the Regex?
I know the original author had left this project -- which is a shame, as its really good! -- but hoping someone else might know?
The text was updated successfully, but these errors were encountered:
I think I have this working using unary operators in a new PR #160
Sorry, something went wrong.
Your PR has been included in version 1.4.40.0. Thanks for your work @Yazwh0
No branches or pull requests
So in 6502 asm we use '<' '>' and '^' to denote high, low and top bytes.
eg
But I also need to be able to support greater\less than.
eg
It feels like these are 'unary operators' but they seem to be handled in a very unique way, and not definable by extending the class?
Does anyone know if there is there a more cunning way, or do I need to hack up the Regex?
I know the original author had left this project -- which is a shame, as its really good! -- but hoping someone else might know?
The text was updated successfully, but these errors were encountered: