views:

52

answers:

1

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)?

+3  A: 

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.

Michael
How do I compile assembly code in a separate file?