I am studying MASM32, and I am learning about xmm, ymm registers.
I wanna debug xmm registers with its address (like ebp, esp, eax and so on), but I can't find any debug tools and good methods in visual studio.
How can I get the address of xmm registers?
I am trying to copy pointer of xmm registers to get address, but it doesn't work well.
Of course, I can see the value with watch while debug.
But I want to get the address and hex(binary) data of xmm registers.
My example project is 32bit in visual studio 2022.
vmovsd xmm0, real8 ptr[ebp+8]
PS: I know xmm0 is a 16bytes register and above code moves 8 bytes.
I want to know if XMM0 is
0000 0000 0000 0000 XXXX XXXX XXXX XXXX
or
XXXX XXXX XXXX XXXX 0000 0000 0000 0000
?