美文网首页
window10安装汇编环境

window10安装汇编环境

作者: potenstop | 来源:发表于2021-01-23 19:14 被阅读0次

环境

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安装汇编环境

      本文链接:https://www.haomeiwen.com/subject/jymuzktx.html