我正试图多次显示一条消息。
我使用过nasm并使用了这个程序:
MOV cx, 1
mov ax, 10
re:
CMP ax, cx
JS fin
mov dx, texte
INC cx
JMP re
fin:
Int 21h
texte: db 'Hello, World !!'
答案 0 :(得分:2)
目前,您只在底部调用int 21h
。
尝试将其移入循环中。
此外,自从我上次在汇编中做了一些事情已经很长时间了,但你可能还需要准备一些寄存器来确定int 21h
会做什么。在此处查看更多信息:http://spike.scu.edu.au/~barry/interrupts.html#ah09
答案 1 :(得分:1)
更多事情: