The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: masmfans on August 31, 2010, 12:57:19 AM

Title: why this masmmacro is error,help me :)
Post by: masmfans on August 31, 2010, 12:57:19 AM
mov eax,@TheThe(A)(100) // i hope mov eax,dword ptr [A]  and  A buffer == 100 db


@TheThe MACRO TheStr:REQ,TheLen:REQ
.data
TheStr db (TheLen) dup (0CCCCCCCCh)
.code
EXITM <dword ptr [TheStr]>
ENDM
Title: Re: why this masmmacro is error,help me :)
Post by: hutch-- on August 31, 2010, 01:39:27 AM
Change the data size to DD and it builds OK.
Title: Re: why this masmmacro is error,help me :)
Post by: masmfans on August 31, 2010, 02:38:08 AM
thanks !

@TheThe MACRO TheStr:REQ,TheLen:REQ
.data
TheStr dd (TheLen) dup (0CCCCCCCCh)
.code
EXITM <dword ptr [TheStr]>
ENDM

BUT

xxx.asm(19) : error A2125: missing macro argument
@TheThe(1): Macro Called From
xxx.asm(19): Main Line Code
xxx.asm(19) : error A2016: expression expected
@TheThe(2): Macro Called From
xxx.asm(19): Main Line Code
Title: Re: why this masmmacro is error,help me :)
Post by: MichaelW on August 31, 2010, 04:40:21 AM
REQ = required parameter

This coding works, but it's not clear to me what you are actually trying to do:

; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««
    include \masm32\include\masm32rt.inc
; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««

@TheThe MACRO TheStr:REQ,TheLen:REQ
  .data
    TheStr dd TheLen dup (0CCCCCCCCh)
  .code
  EXITM <OFFSET TheStr>
ENDM

; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««
    .data
    .code
; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««
start:
; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««
    mov esi, @TheThe( xxxx, 8 )
    print hex$(esi),13,10,13,10
    xor ebx, ebx
    .WHILE ebx < 8
      print hex$([esi+ebx*4]),13,10
      inc ebx
    .ENDW
    print chr$(13,10)
    print hex$(xxxx),13,10,13,10

    mov esi, @TheThe( yyyy, 8 )

    inkey "Press any key to exit..."
    exit
; «««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««««
end start

Title: Re: why this masmmacro is error,help me :)
Post by: masmfans on August 31, 2010, 10:38:27 AM
thanks MichaelW and hutch--  hlep me

macro Have worked