News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Zero locals

Started by JK, March 27, 2021, 05:18:13 AM

Previous topic - Next topic

Vortex

Converting the LOCVAR macro to Poasm is easy :

LOCVAR MACRO _name,_type

    VarSize=VarSize + SIZEOF(_type)

    LastVar TEXTEQU _name ; Masm equivalent = LastVar TEXTEQU <_name>

    LOCAL _name : _type

ENDM


The ENDLOC macro remains the same.