前言
以下内容源自xxx
仅供学习交流使用
推荐
使用 VS Code 进行 x86 汇编语言 MASM Dosbox Debug (仅适用 Windows 平台)
VS code 编写汇编代码
第一步 添加插件
第二步 打开文件
我打开的是E:/masm
第三步 编写文件
为了演示新建一个testVC文件夹
在testVC下新建一个hello.asm文件
编写hello.asm
data segment x db 1 y db 2 sum db ? string db "The result of x+y=$" data ends code segment assume cs:code,ds:data start: mov ax,data mov ds,ax mov dx,offset string mov ah,09h int 21h mov al,x add al,y mov sum,al add al,30h mov dl,al mov ah,02h int 21h mov ah,4ch int 21h code ends end start