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
lib_xud/lib_xud/src/core/included/XUD_RxData.S
Line 59 in 5c6d4fe
This code:
NextRxWord: // Partially un-rolled to assist with timing in r11, res[r0] crc32_inc r6, r11, r9, r4, 1 stw r11, r1[r4] in r11, res[r0] ... bu NextRxWord
can be rolled up (without loss of performance) to:
in r11, res[r0] NextRxWord: crc32_inc r6, r11, r9, r4, 1 stw r11, r1[r4] { in r11, res[r0]; bu NextRxWord }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
lib_xud/lib_xud/src/core/included/XUD_RxData.S
Line 59 in 5c6d4fe
This code:
can be rolled up (without loss of performance) to:
The text was updated successfully, but these errors were encountered: