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 r1, #0xff mov r0, #32 str r0, [r11] ldr r1, [r11, #3]
When the value of r11+3 isn't a multiple of 4, the ldr instruction doesn't function correctly.
According to the ARM Architecture Referrence Manual: data = Memory[address,4] Rotate_Right (8 * address[1:0]) This is how it is described.
data = Memory[address,4] Rotate_Right (8 * address[1:0])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When the value of r11+3 isn't a multiple of 4, the ldr instruction doesn't function correctly.
According to the ARM Architecture Referrence Manual:
data = Memory[address,4] Rotate_Right (8 * address[1:0])
This is how it is described.
The text was updated successfully, but these errors were encountered: