在 Visual Studio 2015 中执行 x86 汇编

第 1 步 :通过 File - > New Project 创建一个空项目。

StackOverflow 文档

步骤 2 :右键单击项目解决方案,然后选择 Build Dependencies-> Build Customizations

第 3 步 :选中 “.masm” 复选框。

StackOverflow 文档

第 4 步 :按 确定 按钮。

第 5 步 :创建汇编的文件并输入:

.386
    .model small
        .code

            public main
                main proc

                    ; Ends program normally

                    ret
                main endp
            end main

第 6 步 :编译!

StackOverflow 文档