[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!
/********************************************************************************/ /* VC 6.0工程直接融合了MASM32汇编编译的方法 */ /* 1、将shell.asm填加到VC工程的Source files中; */ /* 2、将Source files中的shell.obj删除; */ /* 3、在Source files中的shell.asm上:右键->Setting->选中Custom Build页 */ /* 在Commands中输入: */ /* 如果是DEBUG模式,则输入: */ /* c:\masm32\bin\ml /c /coff /Zi /Fo$(IntDir)\$(InputName).obj $(InputPath) */ /* */ /* 如果是RELEASE模式,则输入: */ /* c:\masm32\bin\ml /c /coff /Fo$(IntDir)\$(InputName).obj $(InputPath) */ /* */ /* 在Outputs中输入: */ /* $(IntDir)\$(InputName).obj */ /* 如果没有把masm安装在c盘,则要作相应的修改。 */ /********************************************************************************/