-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
Fix cnv macro (and improviment asm_macro) #100
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #100 +/- ##
========================================
- Coverage 31.3% 31.2% -0.1%
========================================
Files 23 23
Lines 6431 6467 +36
========================================
+ Hits 2014 2018 +4
- Misses 4417 4449 +32
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
MoveOp::CpyA(sreg, sidx, dreg, didx) => { | ||
writer.write_u3(sreg)?; | ||
writer.write_u5(sidx)?; | ||
writer.write_u3(dreg)?; | ||
writer.write_u5(didx)?; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder why I didn't just compressed all the same serialization into a single case...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 98e1b4c
Thank you for addressing this
Description
This PR intent: