You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
If <condition>
<small code: < 128 bytes>
Else
While <condition>
<large code: > 127 bytes>
End
End
Result: the While <condition> injects a JP to its End, but the If <condition> uses a JR to its Else part, causing to move the entire While code 2 bytes up, which clearly makes the JP invalid.
Result: the
While <condition>
injects a JP to its End, but theIf <condition>
uses a JR to its Else part, causing to move the entire While code 2 bytes up, which clearly makes the JP invalid.Thanks @TheLastMillennial for finding the bug!
The text was updated successfully, but these errors were encountered: