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
For compatibility with AVRASM2 all expressions should be 64 bit internally, so that the following is equal
.device atmega168 .equ F_CPU = 16000000 .macro delay1 .set cycles = @0 * (F_CPU / 1000000) .dw cycles .endmacro .macro delay2 .set cycles = (@0 * F_CPU) / 1000000 .dw cycles .endmacro delay1 1000 delay2 1000
The text was updated successfully, but these errors were encountered:
here is the relevant section of the manual
Sorry, something went wrong.
64 bit for expression, fixes issue Ro5bert#53
c557e49
(cherry picked from commit 080dc52)
080dc52
No branches or pull requests
For compatibility with AVRASM2 all expressions should be 64 bit internally, so that the following is equal
The text was updated successfully, but these errors were encountered: