NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2443

operand size conflict

The instruction requires operands to be the same size.

Example

short var;
void main()
{
   __asm xchg ax,bl            // error
   __asm mov al,red            // error
   __asm mov al,BYTE PTR var   // OK
}