window10安装汇编环境

环境

window10 64位

1 下载地址

http://pic.potens.top/upload/DOSBox.rar

image.png

2 挂载masm

双击DOSBox 0.74 Options.bat 拉到最后 新增下面的代码

#替换成你的masm目录
mount c: D:\install\DOSBox\masm   
c:
image.png

保存文件后关闭

3 运行DOSBox.exe

image.png

4 运行文件

在masm目录下新建hello.asm

.model small

.data
    strs DB 'hello world',13,10,'$'
.code
start:
    mov ax,@data
    mov ds,ax
    mov dx,offset strs
    mov ah,09h
    int 21h
    mov ah,4ch
    int 21h
end start

打开DOSBox

# 编译
masm hello.asm
image.png
# 链接
link hello.obj
image.png
# 运行
hello.exe
image.png

你可能感兴趣的:(window10安装汇编环境)