.. _Context: Context ======= .. code-block:: bl Context :: struct { alloc_fn: AllocFn; print_log_fn: PrintLogFn; abort_fn: AbortFn; } Default implicit context type. Implicit context is compiler internal global variable containing basic context for whole assembly. This variable is mutable and can be modified by user code. Members ------- **alloc_fn** - Pointer to memory allocator function. **print_log_fn** - Pointer to log print function. **abort_fn** - Pointer to abort handler function. *Declared in: a.bl*