_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_fnPointer to memory allocator function.print_log_fnPointer to log print function.abort_fnPointer to abort handler function.
Declared in: a.bl