About
Code - Grammar / Syntax (Lexical) in Assembly.
An Assembly language script is the input expected by an assembler (compiler). The assembler defines then the precise syntax of an assembler script.
Articles Related
Syntax
Every assembler shares a common set of syntax rule that comes from one of this two syntax:
- and the AT&T syntax.
The syntax is assembler dependent and have the following components:
Example:
- for nasm. See Nasm syntax - Intel Syntax
- for masm. See Masm syntax - Intel Syntax
- for gas. See Gas syntax - AT&T syntax
- …
Script example:
Label1:
mov ax, bx
add ax, bx
jmp Label3
Label2:
mov ax, cx
...