stl.startup_and_init_pointers (arity 0)ΒΆ
startup Macro - Should be the first piece of code in your program.
Inits the IO variable, and the pointers globals.
Jumps to the next instruction.
SignatureΒΆ
def startup_and_init_pointers @ code_start { ... }
Defined in runlib.fj β lines 32β35 (view on GitHub).
ComplexityΒΆ
Time:
2.5w+265Space:
2.5w+265
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def startup_and_init_pointers @ code_start {
stl.startup_and_init_pointers code_start
code_start:
}
Depends onΒΆ
β Previous: stl.startup/1
Next: stl.startup_and_init_pointers/1 β