-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
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
Another corner case shift issue #8
Comments
Thanks for the report. I believe it should be fixed now. |
It should be fixed now, thanks for letting me know. By the way, how are you finding all these corner-case shift bugs? |
I'm doing my own implementation of JIT-based x86 emulator. To make it easier to develop I fuzz it using (a bit patched) halfix implementation and compare results. Most times the fault is mine, but sometimes I find bugs in halfix =) |
That's really cool, I'm planning on adding a JIT compiler too, I hope to see your project soon! |
The following snippet
sets
al
to0x8
, while0
is expected, as x86 masks the shift count with0x1f
before the rotate.The text was updated successfully, but these errors were encountered: