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
mov r0, #32 mov r1, #64 str r1, [r11] add r2, r11, #1 swp r3, r0, [r2]
When the value of r2 is not a multiple of 4, the swp instruction does not function correctly.
According to the ARM Architecture Reference Manual:
temp = Memory[address,4] Rotate_Right (8 * address[1:0]) Memory[address,4] = Rm Rd = temp
This is how it is described.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When the value of r2 is not a multiple of 4, the swp instruction does not function correctly.
According to the ARM Architecture Reference Manual:
This is how it is described.
The text was updated successfully, but these errors were encountered: