Previous: 2.3. Built-in Assembler To the Table of Contents Next: 2.3.2. Assembler Procedure
2.3. Built-in Assembler Table of Contents 2.3.2. Assembler Procedure

- 2.3.1. -
Table of Contents
2. TMT Pascal Language Description
2.3. Built-in Assembler
2.3.1. Asm Statement


2.3.1. 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: 2.3. Built-in Assembler To the Table of Contents Next: 2.3.2. Assembler Procedure
2.3. Built-in Assembler Table of Contents 2.3.2. Assembler Procedure

- 2.3.1. -