64bit Applications and Inline Assembly
Visual C++ does not support inline assembly for x64 (or ARM) processors, because generally using inline assembly is a bad idea. Usually compilers produce better assembly than humans. Even if you can produce better assembly than the compiler, using inline assembly generally defeats code optimizers of any type. Sure, your bit of hand optimized code … Read more