I wont to out the comment symbol <;> by ECHO directive.
Is it possible by MASM ???
I used before echo. It was no effect.
Try putting an exclamation mark before it. The exclamation mark is MASM's escape character for this sort of thing:
ECHO !;
Alternatively, try using TEXTEQU:
commentchar TEXTEQU <;>
ECHO commentchar
Quote from: zooba on October 13, 2006, 11:32:52 PM
Try putting an exclamation mark before it. The exclamation mark is MASM's escape character for this sort of thing:
ECHO !;
Alternatively, try using TEXTEQU:
commentchar TEXTEQU <;>
ECHO commentchar
I was tried. Is is not wok.
ECHO !;
out !
commentchar TEXTEQU <;>
ECHO commentchar
out <
Hmm... maybe it can't be done then. Anyone else have any ideas?