汇编使用跳转实现1累加到100的和
程序员文章站
2022-04-12 23:32:20
...
使用跳转实现1累加到100的和
代码如下:
data segment
sum dw 1 dup(0)
ends
code segment
assume cs:code,ds:data
start:
mov ax,data
mov ds,ax
mov es,ax
mov ax,0
mov cx,1
addition:
add ax,cx
add cx,1
cmp cx,100
jle addition
mov bx,ax ;结果存在bx中
mov ax,4c00h
int 21h
ends
end start
结果存在bx中
上一篇: HTML表格之简单应用
推荐阅读