[求助]帮忙看一下这个程序那里有错,为什么建立不了可执行文件.
我是一个初学者,由于是自学,所以有很多东西不熟悉,请各位帮帮忙.
不知道下面这个程序那里有错.为什么连接后,没有产生可执行文件.
小弟在这里先谢谢各位了.
源程序如下:
prognam segment
main proc far
assume cs:prognam
start:
push ds
sub ax,ax
push ax
mov bx,1234h
mov ch,4
rotate:mov cl,4
rol bx,cl
mov al,bl
and al,0fh
add al,30h
cmp al,3ah
jl printit
add al,7h
printit:
mov dl,al
mov ah,2
int 21h
dec ch
jnz rotate
ret
main endp
prognam ends
end