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 zeroequals 0= primitive can be written as:
pop ax cmp ax,1 sbb ax,ax push ax
for a savings of 2 bytes and it doesn't require a 386 !
The text was updated successfully, but these errors were encountered:
I came here to write the same thing, and found you already had :-) You should submit a pull request to get the credit.
Sorry, something went wrong.
No branches or pull requests
the zeroequals 0= primitive can be written as:
pop ax
cmp ax,1
sbb ax,ax
push ax
for a savings of 2 bytes and it doesn't require a 386 !
The text was updated successfully, but these errors were encountered: