stl.startup_and_init_all (arity 2)¶
startup Macro - Should be the first piece of code in your program.
Initialize anything needed for the standard library.
stack_bit_size is the size of the global-stack (will hold this number of hexes / return-addresses).
Signature¶
def startup_and_init_all code_start, stack_bit_size { ... }
Defined in runlib.fj — lines 67–71 (view on GitHub).
Complexity¶
Time:
6725 + 2.75w+@ + nSpace:
6725 + 2.75w+@ + n
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def startup_and_init_all code_start, stack_bit_size {
stl.startup_and_init_pointers code_start
hex.init
stl.stack_init stack_bit_size
}
Depends on¶
Used by¶
Example uses¶
stl.startup_and_init_allinrunlib.fj
← Previous: stl.startup_and_init_all/1
Next: stl.fj →