assembly and Visual C++ Express 2010 64 Bit
Is it po开发者_StackOverflow社区ssible 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.
精彩评论