本文共 392 字,大约阅读时间需要 1 分钟。
本文为《汇编语言程序设计》1403小节例程。点击进课程主页。
任务:读取CMOS中信息,在屏幕中间显示当前的月份
程序:assume cs:codecode segmentstart:mov al,8 out 70h,al in al,71h mov ah,al mov cl,4 shr ah,cl and al,00001111b add ah,30h add al,30h mov bx,0b800h mov es,bx mov byte ptr es:[160*12+40*2],ah mov byte ptr es:[160*12+40*2+2],al mov ax,4c00h int 21hcode endsend start
转载地址:http://wkrvx.baihongyu.com/