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
;Power of 10 is stored in B, need to put in A first xor a sub b ld de,pow10table+120 jp p,+_
doesn't work with numbers like 1e-2. This works for me ("calc" in NedoOS):
;Power of 10 is stored in BC, need to put in A first xor a or b ld de,pow10table+120 jp p,+_
The text was updated successfully, but these errors were encountered:
No branches or pull requests
;Power of 10 is stored in B, need to put in A first
xor a
sub b
ld de,pow10table+120
jp p,+_
doesn't work with numbers like 1e-2.
This works for me ("calc" in NedoOS):
;Power of 10 is stored in BC, need to put in A first
xor a
or b
ld de,pow10table+120
jp p,+_
The text was updated successfully, but these errors were encountered: