-
byte nullchar– the null terminator for strings in the default encoding, equivalent to""z[0], can be overriden by theNULLCHARfeature -
byte nullchar_scr– the null terminator for strings in the screen encoding, equivalent to""scrz[0], can be overriden by theNULLCHAR_SCRfeature -
null$ nullptr– the invalid pointer value; the value of theNULLPTRfeature -
bool true,bool false– boolean constants -
pointer segment.N.start– the value ofsegment_N_startfrom the platform definition -
pointer segment.N.codeend– the value ofsegment_N_codeendfrom the platform definition -
pointer segment.N.datastart– the value ofsegment_N_datastartfrom the platform definition -
pointer segment.N.end– the value ofsegment_N_endfrom the platform definition -
pointer segment.N.heapstart– the address of the first byte in theNsegment that was not automatically allocated -
word segment.N.length– the number of byte locations betweensegment_N_startandsegment_N_end, inclusive -
byte segment.N.bank– the value ofsegment_N_bankfrom the platform definition -
byte segment.N.fill– the value ofsegment_N_fillfrom the platform definition -
this.function– the alias of the current function (in macros, it resolves to the actual non-macro function that called the macro)