Is it possible to insert assembly code on Visual C++ Express 2010 64 Bit?
If not, is there an intrinsic for adc (add with carry)?
Is it possible to insert assembly code on Visual C++ Express 2010 64 Bit?
If not, is there an intrinsic for adc (add with carry)?
The x64 C++ compiler doesn't support inline assembly, you need to put your assembly code in a separate file.
There is no built-in intrinsic for adc, but you can easily emulate it.