Previous: Built-in Assembler To the Table of Content Next: Assembler Procedure

- 2.3.1 -
TMT Pascal Language Description
Built-in Assembler

Asm Statement

The built-in assembler is invoked with the asm statement.
The syntax of the asm statement is
asm
  [AssemblerStatement(s)]
end;
The asm statement may appear anywhere where a Pascal statement allowed.
asm
   MOV  Al, Value
   MOV  DX, ThePort
   OUT  DX, AL
end;



Previous: Built-in Assembler To the Table of Content Next: Assembler Procedure
Built-in Assembler Table of Content Assembler Procedure

- 2.3.1 -