The $C
directive is called the Code segment attribute
and, in conjunction with the keywords MOVEABLE, FIXED, DEMANDLOAD, PRELOAD, DISCARDABLE, PERMANENT, changes the attributes of the code segment.
{$C MOVEABLE DEMANDLOAD DISCARDABLE} // this is setting Code Segment Attribute.
if you use the $C
directive with +
or -
, which you use to enable or disable the generation of code for claims.
example:
{$C+} { Assertions - On }
Rruz
source share