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
The current 0xSCA has some problems.
Firstly it has grammar mistakes and typos. If those can be pointed at, I will fix them.
Second, the current words on labels contradict in the Labels section and the section at the end of the file.
And local labels use a dot in front but that is not looking clear. Readability is bad. So I think about using an underscore instead
.ifdef DEBUG label: .local: .word 5 .end .ifdef DEBUG label: _local: .word 5 .end
The text was updated successfully, but these errors were encountered:
The underscore prefix does increase readability very well, I must say.
Sorry, something went wrong.
It is going to be _. i cant get the dot implemented nicely in my own assembler :)
told you so :D
I suggest using :blah labels instead of blah: labels, as that is how they are in the specification. The _ prefix for local labels is nice.
No branches or pull requests
The current 0xSCA has some problems.
Firstly it has grammar mistakes and typos. If those can be pointed at, I will fix them.
Second, the current words on labels contradict in the Labels section and the section at the end of the file.
And local labels use a dot in front but that is not looking clear. Readability is bad. So I think about using an underscore instead
The text was updated successfully, but these errors were encountered: