blueshogun96
A lowdown dirty shame
Ok guys, I was wondering what do you think would be the most efficient way to emulate a 128-bit register? This is the best I could come up with, just wondering if there are any better solutions just in case. For those who don't know, I'm trying to emulate SSE registers. Thanks.
Code:
typedef union _SSEReg
{
struct _o
{
#if LITTLE_ENDIAN
UINT64 l;
UINT64 h;
#else
UINT64 h;
UINT64 l;
#endif
}o;
} SSEReg;