18.1 Assembler statements

The following is an example of assembler inclusion in Pascal code.

 ...  
 Statements;  
 ...  
 Asm  
   the asm code here  
   ...  
 end;  
 ...  
 Statements;

The assembler instructions between the Asm and end keywords will be inserted in the assembler generated by the compiler. Conditionals can be used in assembler code, the compiler will recognize them, and treat them as any other conditionals.