You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
xmm2
About this tag
The xmm2 tag on WindowsForum.com covers discussions about the XMMWORD data type and its usage in assembly language programming, particularly with Visual Studio 2003. Content includes questions about equivalent directives for XMMWORD in VS2003, as well as code examples involving SSE instructions like movdqu and movdqa that reference xmm2 registers. These topics are relevant for developers working with legacy Microsoft tools and low-level optimization on Windows platforms.
We have a .asm file which uses XMMWORD. This is not getting compiled with VS2003. And we need to use VS2003 only. What is the equivalent of XMMWORD in VS2003. Any help would be appreciated. The code is as below:
movdqu xmm0, XMMWORD PTR [eax]
movdqa xmm2, XMMWORD PTR...