Code: Select all
Procedure bla()
Protected i.l
Protected Dim array.l(10)
; move the second (2*4) array element to Eax
!MOV Eax, dword[p.a_array+8]
ProcedureReturn
EndProcedureCode: Select all
Procedure bla()
Protected i.l
Protected Dim array.l(10)
!p.a_array equ p.v_i+4
; move the second (2*4) array element to Eax
!MOV Eax, dword[p.a_array+8]
ProcedureReturn
EndProcedure