证明猜想
masm test
link test
test
debug test.exe
它和hello.asm对应的语句是一样的
第八步 补充二
DOS环境下hello.asm文件会变成test.asm
如果testVC下再新建一个.asm文件会咋样?
hello2.asm
data segment x db 11101110b y db 11001000b data ends code segment assume cs:code,ds:data start: mov ax,data mov ds,ax mov al,x add al,y mov ah,4ch int 21h code ends end start
会发现
还是只有一个test.asm文件
结论
VS code提供的dos环境是互相隔离的
就算你同时打开两个dos环境
这两环境也是互不影响的