Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MOV AH,02H MOV BH,00H MOV DH,0006H MOV DL,0030H INT 10H MOV AH,09H MOV AL,00B3H MOV BH,00H MOV BL,70H MOV CX,0001H INT 10H
| | | |
我想这样显示..如何添加循环?我需要在每个循环中将 DH 增加 1
mov bx, counter loop: push bx your code pop bx dec bx jg loop
为了以防万一,我将 bx 保存在堆栈中,这样您就不会在中间做其他事情时松开计数器。