; Comment Operator Operator
;comment
The assembler ignores any text on a line after the ; operator. Use it to
insert comments into your code. For example:
MOV AX,5 ;Get ready for addition.
Notes: Liberal use of comments can make your code easier to
read.