mirror of
https://github.com/KarolS/millfork.git
synced 2024-11-01 05:05:32 +00:00
808 B
808 B
Predefined constants
-
byte nullchar
– the null terminator for strings in the default encoding, equivalent to""z[0]
-
null$ nullptr
– the invalid pointer value; the value of theNULLPTR
feature -
bool true
,bool false
– boolean constants -
pointer segment.N.start
– the value ofsegment_N_start
from the platform definition -
pointer segment.N.end
– the value ofsegment_N_end
from the platform definition -
pointer segment.N.heapstart
– the address of the first byte in theN
segment that was not automatically allocated -
word segment.N.length
– the number of byte locations betweensegment_N_start
andsegment_N_end
, inclusive -
byte segment.N.bank
– the value ofsegment_N_bank
from the platform definition