You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Robert Kuhfß edited this page Oct 30, 2018
·
1 revision
#comment
The #comment preprocessor allows for block comments in your source files. Very similar to a C style /* */ comment, when encountered these instruct the assembler to ignore all other text until the preprocessor #endcomment. This is very handy when you have long blocks of text that you want to format without worrying about using large numbers of semicolons.
Usage
#comment
This is a comment
about comments.
#endcomment
; lotsa code goes here