Kindly be of some form of assistance to me. Here is what I wanted to know.
I know some c++, done some win32, and some normal projects, now here is an issue bothering me, can you do _asm (inline Asm) in c++ using FASM?
This has been an issue I have been working / thinking on. Can you be of assistance of some sort.
Yes. However it is compiler dependend. I believe Intel compiler can use FASM. Gcc uses gas and can switch between AT&T and Intel syntax. MSVS uses Microsoft assembler and Intel syntax.
Example of GCC inline assembler with AT&T syntax and resulting code (with ((noinline)) attribute on for testing):