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
Otherwise, conditionals depending on them will use signed jumps instead of unsigned jumps.
For example, the next piece of code, should be translated using a jumpAbove and not a jumpGreater.
r := (self stackTop bitAnd: 16rFFFFFFFFFFFFFFFF) >1ifTrue: [ 1 ]
ifFalse: [ 2 ].
selfpop:1thenPush: r
The text was updated successfully, but these errors were encountered:
Otherwise, conditionals depending on them will use signed jumps instead of unsigned jumps.
For example, the next piece of code, should be translated using a jumpAbove and not a jumpGreater.
The text was updated successfully, but these errors were encountered: