$A

From Lazarus wiki
Revision as of 14:43, 25 February 2020 by Trev (talk | contribs) (English translation based on the German page but expanded)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Deutsch (de) English (en)


Back to local compiler directives.


The local compiler directives {$ALIGN 1} or {$A1}, {$ALIGN 2} or {$A2}, {$ALIGN 4} or {$A4}, {$ALIGN 8} or {$A8},{$ALIGN 16} or {$A16} and {$ALIGN 32} or {$A32} determine the alignment of records. The number signifies the alignment boundary in bytes.

Packing records reduces the amount of memory required at the expense of slowing down processing speed.

These directives are related to the directive $PACKRECORDS.

Example:

  {$A8}      // the result is the same as {$PACKRECORDS 8}

  {$ALIGN 8} // the result is the same as {$PACKRECORDS 8}