user410600
user410600

Reputation: 127

assembly and Visual C++ Express 2010 64 Bit

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

Upvotes: 1

Views: 551

Answers (1)

Michael
Michael

Reputation: 55415

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.

Upvotes: 4

Related Questions