Control Flow

July 9, 2025 ยท View on GitHub

Asmc Macro Assembler Reference

Control Flow

! (runtime logical not)<= (runtime less or equal)
!= (runtime not equal)== (runtime equal)
|| (runtime logical or)> (runtime greater than)
&& (runtime logical and)>= (runtime greater or equal)
< (runtime less than)& (runtime bitwise and)
CARRY? (runtime carry test)OVERFLOW? (runtime overflow test)
PARITY? (runtime parity test)SIGN? (runtime sign test)
ZERO? (runtime zero test)

See Also

Operators Reference