VC++ asm intrinsics
omeg <omegaredo2pl> Tuesday, March 10 2009 08:44.08 CDT


Microsoft's Visual C++ supports less and less asm inline in later versions, or not at all on x64 platform. However, it provides a hefty number of intrinsics that are basically equivalents of single instructions.

http://msdn.microsoft.com/en-us/library/x8zs5twb.aspx

Handy reference if you like writing low-level but somewhat portable code.

There are also architecture-specific intrinsics:
x86
x64

Comments
frankboldewin Posted: Wednesday, March 11 2009 01:53.43 CDT
very valuable hint. i will study the msdn reference soon and start to write some test code.

thanx dude!

Soul12 Posted: Wednesday, March 11 2009 05:43.55 CDT
i want my inline asm :( hope they keep supporting it

RayGibson Posted: Saturday, April 4 2009 00:00.26 CDT
Thanks Omeg!!