similar to before
use ASSUME with a register
after that, the assembler assumes that register is a pointer to that structure type
be sure and ASSUME REG:Nothing when you are done, though :P
you can also do it with an "override" - no ASSUME
mov eax,[ebx].aStruct.b
in that case, you'd have to add the pArray base
another way...
mov esi,pArray
mov eax,[esi+ebx].aStruct.b