bit.if0 (arity 2)ΒΆ
if x == 0 jump to l0
x is a bit, l0 is an address.
SignatureΒΆ
def if0 x, l0 @ end { ... }
Defined in bit/cond_jumps.fj β lines 45β48 (view on GitHub).
ComplexityΒΆ
Time:
@+2Space:
@+2
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def if0 x, l0 @ end {
.if x, l0, end
end:
}
Depends onΒΆ
Used byΒΆ
Example usesΒΆ
bit.orinbit/logics.fjbit.inc.inc1_with_carry0_jumpinbit/math.fjbit.print_hex_intinbit/output.fj