Visual Studio x64 编译 .asm 文件方法

1、右键 .asm 文件,点击“属性”。

2、在项类型里选择“自定义生成工具”。

3、点击应用,然后点击左边“自定义生成工具”里的“常规”。

4、在“命令行”里输入

ml64 /Fo $(IntDir)%(fileName).obj /c %(fileName).asm

在“输出”里输入

$(IntDir)%(fileName).obj

5、点击“确定”,然后重新编译。

猜你喜欢

转载自blog.csdn.net/u012088909/article/details/95742328