Skip to content

_Context

Declaration

_Context :: struct {
    alloc_fn: _AllocFn;
    print_log_fn: _PrintLogFn;
    abort_fn: _AbortFn;
};

Description

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