News:

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

String pointer to Literal

Started by xroot, January 19, 2010, 04:40:25 PM

Previous topic - Next topic

xroot

Is there a way to convert a string dword ptr to a literal to be used in a macro.
I want the string data to be put into the macro.
Thanks


astring MACRO str:REQ
      arg equ <anyting >
      arg CATSTR arg,<str>,<more stuff>
      arg             
    ENDM

getstring proc string:dword
        astring string
getstring endp