『楼 主』:
用masm6.0编译后出现can't open file a.asm
使用 LLM 解释/回答一下
这是怎么回事啊,小弟初学,怎么解决呢?望高手指教!!源程序如下,很简单的一个
data segment
x db 1
data ends
code segment
assume cs:code,ds:data
start:mov ax,data
mov ds,ax
mov dl,x
add dl,30h
mov ah,2h
int 21h
mov ah,4ch
int 21h
code ends
end start
望快快回复,多谢多谢!!
What's going on here? I'm just a beginner, how to solve it? Hope the experts can give instructions! The source code is as follows, a very simple one
data segment
x db 1
data ends
code segment
assume cs:code,ds:data
start:mov ax,data
mov ds,ax
mov dl,x
add dl,30h
mov ah,2h
int 21h
mov ah,4ch
int 21h
code ends
end start
|