hex.mov (arity 2)ΒΆ
dst = src
both dst,src are hexes.
SignatureΒΆ
def mov dst, src @ end { ... }
Defined in hex/memory.fj β lines 53β58 (view on GitHub).
ComplexityΒΆ
Time:
2@+1Space:
2@+25
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def mov dst, src @ end {
stl.comp_if1 dst==src, end
.zero dst
.xor dst, src
end:
}
Depends onΒΆ
β Previous: hex.zero/2
Next: hex.mov/3 β