Const

Module with common library constants

Const

VERSION* = "0.1";
BUILD* = "1";
HOST* = COMPILER.EQUATION("ENV_HOST");
TARGET* = COMPILER.EQUATION("ENV_TARGET");
CPU* = COMPILER.EQUATION("CPU");
WORDSIZE* = 4;
EQUAL*      = 0;
GREATER*    = 1;
LESS*       = -1;
NONCOMPARED*= 2;
DEBUG*  = 4;
INFO*   = 3;
WARN*   = 2;
ERROR*  = 1;
FATAL*  = 0;
FmtLeft* = {0};
FmtRight* = {1};
FmtCenter* = {2};
FmtSign* = {3};
FmtZero* = {4};
FmtSpc* = {5};
FmtAlt* = {6};
FmtUpper* = {7};
FPZero* = 0;
FPNormal* = 1;
FPSubnormal* = 2;
FPInfinite* = 3;
FPNaN* = 4;
SeekSet* = 0;
SeekCur* = 1;
SeekEnd* = 2;
StreamOK* = 0;
StreamNotImplementedError* = 1;
StreamNotOpenError* = 2;
StreamReadError* = 3;
StreamWriteError* = 4;