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
When compiling the following test-code:
.program test .fifo txput .wrap_target mov rxfifo[0], ISR mov rxfifo[1], ISR mov rxfifo[2], ISR mov rxfifo[3], ISR mov rxfifo[Y], ISR .wrap
I seem to get a correct binary according to the documentation. Sadly the disasm comments are wrong, swapping indexed and Y-mode:
static const uint16_t test_program_instructions[] = { // .wrap_target 0x8018, // 0: mov rxfifo[y], isr 0x8019, // 1: mov rxfifo[y], isr 0x801a, // 2: mov rxfifo[y], isr 0x801b, // 3: mov rxfifo[y], isr 0x8010, // 4: mov rxfifo[0], isr // .wrap };
I tried very hard to use code-blocks in this text, but the line-endings failed hard in the preview whatever I tried.
The text was updated successfully, but these errors were encountered:
kilograham
No branches or pull requests
When compiling the following test-code:
I seem to get a correct binary according to the documentation. Sadly the disasm comments are wrong, swapping indexed and Y-mode:
I tried very hard to use code-blocks in this text, but the line-endings failed hard in the preview whatever I tried.
The text was updated successfully, but these errors were encountered: