The MASM Forum Archive 2004 to 2012

Project Support Forums => 64 Bit Assembler => Topic started by: GUAN DE DIO on July 31, 2008, 03:47:56 PM

Title: How to debugger a macro whose doesn't create code
Post by: GUAN DE DIO on July 31, 2008, 03:47:56 PM
Hi everybody,

      I have some macros that I downloaded by Internet and They don't work as well.

     I want to debug them to fix, but I don't know how.

      I know that echo send string to the screen but I don't know how to print the value of a variable with it.  I try something like this:

       echo index

      and the result was:

       ??006B.

One help please.

GUAN
Title: Re: How to debugger a macro whose doesn't create code
Post by: jj2007 on July 31, 2008, 06:05:00 PM
Looks familiar ;-)
In general, a CATSTR works fine in such cases:

  tmp$ CATSTR <MyVar=>, %MyNumericVar, <, 1stArg=>, <arg1>
  % echo tmp$
Title: Re: How to debugger a macro whose doesn't create code
Post by: GUAN DE DIO on July 31, 2008, 07:48:27 PM
Thanks
;)
Title: Re: How to debugger a macro whose doesn't create code
Post by: MazeGen on August 01, 2008, 07:12:01 AM
I debug macros using /Fl command-line option.