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
Change the data size to DD and it builds OK.
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
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
thanks MichaelW and hutch-- hlep me
macro Have worked