汇编输出9个星号,第一行1个,第二行三个,第三行5个,怎么写?主要是不知道怎么换行

2025-02-26 05:50:32
推荐回答(1个)
回答1:

mov dl,0ah ;换行
mov ah,2
int 21h

mov dl,0dh ;回车
mov ah,2
int 21h