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
It seems that REV is not supported yet. It would be useful to improve this armv7m sha256 implementation. When compiling the following piece of code:
REV
export fn trev(reg u32 a) -> reg u32 { a = #REV(a); return a; }
I get:
jasminc -arch=arm-m4 -o rev.s rev.jazz warning: support of the ARMv7 architecture is experimental "rev.jazz", line 3 (7-10): typing error: unknown primitive: `REV' make: *** [Makefile:2: rev.s] Error 1
The text was updated successfully, but these errors were encountered:
fixes [#618]
5638bb5
ARM: add instructions REV, REV16, REVSH
bfc158d
Fixes #618
f041500
9bb8bb1
Fixes #618 (cherry picked from commit f041500)
No branches or pull requests
It seems that
REV
is not supported yet. It would be useful to improve this armv7m sha256 implementation.When compiling the following piece of code:
I get:
The text was updated successfully, but these errors were encountered: