The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: xroot on January 19, 2010, 04:40:25 PM

Title: String pointer to Literal
Post by: xroot on January 19, 2010, 04:40:25 PM
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