汇编实验1.计算1+2+3+…+10,将结果显示在屏幕上。4
Posted lhclqslove
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了汇编实验1.计算1+2+3+…+10,将结果显示在屏幕上。4相关的知识,希望对你有一定的参考价值。
assume cs: code code segment mov cx,10d mov ax,0 mov bx,0 s: inc bx add ax,bx loop s mov bl,10d div bl mov bh,ah mov bl,al mov dl,bl add dl,30h mov ah,2 int 21h mov dl,bh add dl,30h mov ah,2 int 21h code ends end
运行结果
以上是关于汇编实验1.计算1+2+3+…+10,将结果显示在屏幕上。4的主要内容,如果未能解决你的问题,请参考以下文章