不管如何修改一直报错
不管怎么修改都是一直报错 error A2088: END directive required at end of file 本帖最后由 jackz007 于 2022-4-25 12:26 编辑assume cs:code
code segment
start:mov ax,2 ; 指示程序入口
mov cx,11
s:add ax,ax
loop s
mov ax,4c00h
int 21h
code ends
end start ; 指示程序入口 jackz007 发表于 2022-4-25 12:24
还是得到一样的报错,error A2088: END directive required at end of file,是因为我用的是win10的原因吗,应该用xp系统来运行才可以吗 1187494146 发表于 2022-4-25 12:31
还是得到一样的报错,error A2088: END directive required at end of file,是因为我用的是win10的原因 ...
如果你的操作系统是 win10 x64 的话,最好用 DOSBOX 虚拟机,当然,用 winxp 也应该是可以的。
不要用 ml.exe 编译代码,用 masm.exe 试试看呢。
页:
[1]