Reputation: 6323
Can I do inline assembly in visual studio 2005 (32 bit) ?
(I am pretty sure the (64 bit) version no longer allows inline assembly or "__asm".)
Upvotes: 0
Views: 117
Reputation: 281475
Yes, you can, using __asm
. See the Inline Assembler documentation for VS 2005.
Upvotes: 3