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
It seems that the implementation of the FCOMP (and FUCOMP) with memory argument results in an infinite recursion:
template <typename S2> DEF_FPU_SEM(FUCOMPmem, RF80 src1, S2 src2) { SetFPUDp(src2); return FUCOMPmem(memory, state, src1, src2, pc, fop); } template <typename S2> DEF_FPU_SEM(FCOMPmem, RF80 src1, S2 src2) { SetFPUDp(src2); return FCOMPmem(memory, state, src1, src2, pc, fop); }
Probably some other function should have been called...
The text was updated successfully, but these errors were encountered:
@DCNick3 good find! Can you submit a PR that calls whatever was meant to be called?
Sorry, something went wrong.
I think if I will poke around I will find which one is meant to be called and submit a PR
Successfully merging a pull request may close this issue.
It seems that the implementation of the FCOMP (and FUCOMP) with memory argument results in an infinite recursion:
Probably some other function should have been called...
The text was updated successfully, but these errors were encountered: