PDA

Click to See Complete Forum and Search --> : Assembly in Visual Studio


OB1
Oct 29th, 2000, 12:33 AM
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?

Oct 29th, 2000, 01:57 AM
_asm
{
}

V(ery) Basic
Oct 29th, 2000, 04:23 AM
__asm {

xor eax, eax

}

OB1
Oct 29th, 2000, 06:48 PM
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.

parksie
Nov 1st, 2000, 03:35 PM
Yes, but you'd need to do some serious playing with the custom build facility.

Possibility for making a new project/package type?