The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: Rockphorr on October 13, 2006, 03:49:31 PM

Title: Out the ; by echo directive
Post by: Rockphorr on October 13, 2006, 03:49:31 PM
I wont to out the comment symbol <;> by ECHO directive.
Is it possible by MASM ???
I used before echo. It was no effect.
Title: Re: Out the ; by echo directive
Post by: 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
Title: Re: Out the ; by echo directive
Post by: Rockphorr on October 19, 2006, 04:10:30 PM
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 <
Title: Re: Out the ; by echo directive
Post by: zooba on October 19, 2006, 10:44:40 PM
Hmm... maybe it can't be done then. Anyone else have any ideas?