I don't know how to access a stl vector in x86. I have tried to do it like that but I have some errors.
mov ebx, stl_vector
mov eax, [ebx] ;Here I want to store the first element of the vector
mov edx, [ebx + 4] ; I want to store the second element of the vector
I want to do the same in SSE language.
Thank you in advance!