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
Describe the bug The RST instruction is given an incorrect size of 3, leading to label misalignments after any RST instruction.
To Reproduce Steps to reproduce the behavior:
JMP EXAMPLE RST 00H EXAMPLE: MVI A,01H
0000 jmp 6 0003 rst 0 0004 mvi A, 1 0006 nop
Expected behavior
0000 jmp 4 0003 rst 0 0004 mvi A, 1 0006 nop
Screenshots
Laptop:
Additional context https://github.com/emustudio/emuStudio/blob/develop/plugins/compiler/as-8080/src/main/java/net/emustudio/plugins/compiler/as8080/tree/OC_Expr.java#L62
The text was updated successfully, but these errors were encountered:
Thanks @20kdc for reporting, I will look at it this or next week
Sorry, something went wrong.
[#197] 8080-compiler: Fix RST instruction size
1231ae7
[#197] Add missing in,out instructions to map
6db2aee
[#197] Removed println
0722162
@20kdc the issue should be fixed now on develop branch
develop
[#197] Add test for Z80
88376d4
Merge pull request #199 from emustudio/bug-197
3e8852c
vbmacher
No branches or pull requests
Describe the bug
The RST instruction is given an incorrect size of 3, leading to label misalignments after any RST instruction.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Screenshots

Laptop:
Additional context
https://github.com/emustudio/emuStudio/blob/develop/plugins/compiler/as-8080/src/main/java/net/emustudio/plugins/compiler/as8080/tree/OC_Expr.java#L62
The text was updated successfully, but these errors were encountered: