14.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 ib assembler, the compiler will recognise it, and treat it as any other conditionals.