Skip to content
New issue

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

6502 addressing modes (indirect),Y and absolute,Y should support space between comma and Y #130

Open
RobertBaruch opened this issue Jun 26, 2022 · 0 comments

Comments

@RobertBaruch
Copy link

This will fail to compile the second and third instructions because the parser doesn't accept a space between the comma and the Y. Aesthetically, a space looks kind of nice.

    PROCESSOR 6502
    ORG 0
    LDA ($10),Y
    LDA ($10), Y    ; error (Illegal addressing mode)
    LDA $2000, Y    ; error (Unresolved symbol Y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant