I can't seem to get Visual Studio C++ 6.0 to recognize the asm command. What is the syntax and where in my program do I use it?
Printable View
I can't seem to get Visual Studio C++ 6.0 to recognize the asm command. What is the syntax and where in my program do I use it?
_asm
{
}
Code:__asm {
xor eax, eax
}
So I do need that underline? That is what I was missing. One more question. Is it possible to write an entire assembly program in VC++ 6.0? Thanks for you help.
Yes, but you'd need to do some serious playing with the custom build facility.
Possibility for making a new project/package type?