|
VC++ already supports asm code, in MASM style.
just do like so:
_asm
{
// asm code here..
}
or you can just :
_asm mov eax, 0x06
_asm *****
If you don't like that, but wish to use MASM totally, you can reconfigure VC IDE anyway, with custom build commands, etc, for .asm files. Not that big of deal. I don't think Easy Coder lets you double click on resource buttons, etc , anyway, for code entry.
-Lunar
Last edited by Lunar_Dust; 07-09-2004 at 22:09.
|