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
f24/f24cos.z80 says cos(0)==0 in the comments. But cos(0)=1
The text was updated successfully, but these errors were encountered:
In my code I have changed the first few lines of this routine to
f24cos: ;cos(AHL) ==> AHL ;cos(0) == 1 ; fixed by JFB add a,a jr nz,f24cos_skip ld a,$3F ; 1.0 ld hl,0 ret ;cos(inf)==cos(NaN)==NaN f24cos_skip: rrca cp $7F :
Sorry, something went wrong.
No branches or pull requests
f24/f24cos.z80 says cos(0)==0 in the comments. But cos(0)=1
The text was updated successfully, but these errors were encountered: