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
I have a function that is called like that:
procedure FillChar(Dest: word; Count: byte registerY; Value: byte registerA); begin ... end; ... FillChar($2000, 20, 10);
The code generated is:
$08B9 A9 0A LDA #$0A $08BB A0 14 LDY #$14 $08BD A9 00 LDA #$00 $08BF 8D 0E 08 STA Src@0 $08C2 A9 20 LDA #$20 $08C4 8D 0F 08 STA Src@1 $08C7 20 60 08 JSR __FillChar
This code destroys Value argument, because A is overridden .
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a function that is called like that:
The code generated is:
This code destroys Value argument, because A is overridden .
The text was updated successfully, but these errors were encountered: