◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Syntax: COMMENT delimiter [text] [text] [text] delimiter [text] See also: Semicolon (;), Semicolons (;;) Description: Ignores all text between delimiters or on the same line as a delimiter. The two comment delimiters can be on the same or different physical lines. In the following code segment, the text inside the asterisks and the MOV instruction are ignored: COMMENT * This text is ignored by the assembler * mov ax, 10h Parameter Description delimiter First nonblank character following the COMMENT directive text All text up to and including the line containing the next occurrence of the delimiter. -♦-