View Single Post
  #6  
Old 07-09-2004, 22:07
Lunar_Dust
 
Posts: n/a
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.
Reply With Quote