The MASM Forum

General => The Campus => Topic started by: stevenxie on May 23, 2021, 09:53:52 PM

Title: what does lowpercase letter v mean in vassily.inc?
Post by: stevenxie on May 23, 2021, 09:53:52 PM
hello,all!
In the vassily.inc macro file I see. The for macro has this code:
.for MACRO PreLoopAction,args,PreTestCondAction:VARARG
v PreLoopAction
SaveUntilCondsLabel
IFDIF <args>, <TRUE>
jmp LastUntilConds
ENDIF
........
A section of code in the .endf macro:
.endf MACRO
IF while_cnt EQ 1
% FOR parm,<PreTestCond0>
v parm
ENDM
ELSEIF while_cnt EQ 2
% FOR parm,<PreTestCond1>
v parm
ENDM
.......
Here, what instruction (or macro) is a separate red lowpercase letter v? What does it mean?
Title: Re: what does lowpercase letter v mean in vassily.inc?
Post by: HSE on May 24, 2021, 12:43:58 AM
Hi stevenxie!

Quote from: stevenxie on May 23, 2021, 09:53:52 PM
Here, what instruction (or macro) is a separate red lowpercase letter v? What does it mean?

The v macro is missing (because make nothing  :biggrin:):v MACRO vl_expr:VARARG

ENDM

Is a way to comment that line.

Regards, HSE.