with this data
.data
tableD DWORD 10h, 20h, 30h, 40h, 50h, 60h
Rowsize = ($ - tableD)
DWORD 60h,70h,80h,90h,0A0h
DWORD 0B0h,0C0h,0D0h,0E0h,0F0h
I can use
.code
mov eax,tableD[ebx + esi*TYPE tableD]
but I can't use
mov eax,tableD[ebx*2 + esi*TYPE tableD]
but I can use
mov eax,tableD[ebx*2 + esi]
can't I use 2 *s in there?
can I know the terms for those objects?