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 following use-case:
In DRV.MAC:
ld ix,DV_DSKIO## ;Or DEV_RW (they are at the same address) ex af,af' ld a,DV_BANK## call CALBNK## jr nc,DIO_RD_OK
ld ix,DV_DSKIO## ;Or DEV_RW (they are at the same address) ex af,af' ld a,DV_BANK## call CALBNK## and a jr z,DIO_RD_OK
For now, I adapted my driver to set carry when A>0. And the problem is now solved.
A very special border-case I would call this.
I think DRV.MAC: DIO_RD_LOOP has to check the contents of A like CONV_ERR does for DIO_NOP1.
The text was updated successfully, but these errors were encountered:
Created a PR.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The following use-case:
In DRV.MAC:
For now, I adapted my driver to set carry when A>0. And the problem is now solved.
A very special border-case I would call this.
I think DRV.MAC: DIO_RD_LOOP has to check the contents of A like CONV_ERR does for DIO_NOP1.
The text was updated successfully, but these errors were encountered: