News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

problem using Macros, Help please

Started by GUAN DE DIO, September 30, 2008, 09:35:38 PM

Previous topic - Next topic

GUAN DE DIO

Hi everybody,


    I'm working with  Alt_If_en.mac. This is a set of macros to use a new @IF..@ELSE..@ENDIF.

    I'm working on 64 bits, and the current macros .if   .else .endif  don't work so It was my salvation.

     The problem is that in my code I use a lot of this macros, and I am in a point that if I add a new @IF structure the compilation faults. I think some internal variable use for these macros are in overflow.

      The variables are declared as follows

@LABEL MACRO Label
  IFNDEF Label&_count
    Label&_count = 0     ; <= Variable
  ENDIF
  EXITM <@CatStr(Label, <_>, %Label&_count)>
ENDM


Is it possible to declared this variable as unsigned, long or something with more capacity ?

Best Regards,

GUAN