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
Many instructions can be rewritten to be clearer for people, e.g.
MOV (R2), R1 ==> R1 := memory[R2] ADDQ $1, R1 ==> R1 := R1 + 1 LEAQ 0(R1)(R2*4), R3 ==> R3 := R1 + R2 * 4 FMADDS F0, F2, F1, F2 ==> F2 := F0*F1 + F2
It doesn't need to be comprehensive, however if there was a list of substitutions then people can add new ones as the need arises.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Many instructions can be rewritten to be clearer for people, e.g.
It doesn't need to be comprehensive, however if there was a list of substitutions then people can add new ones as the need arises.
The text was updated successfully, but these errors were encountered: