满意答案
lbdtez5718
2015.11.27
采纳率:52% 等级:12
已帮助:23749人
1234567891011121314151617181920212223242526272829303132333435363738394041在windows的dos窗口中,闪烁未实现 !stack segment stack dw 256 dup(?)stack ends code segment assume cs:code,ss:stackstart: mov ah,0 mov al,3 int 10h mov ah,5 mov al,0 int 10h mov si,26 mov bl,04eH mov bh,0 mov al,'A' mov ah,9 dec ala1: mov cx,1 inc al push ax int 10h mov ah,3 int 10h inc dl mov ah,2 int 10h pop ax dec si jnz a1 mov ah,4ch int 21hcode ends end start追答: 使用dos功能调用是达不到效果的!要使用int 10h中断。
00分享举报