汇编语言 编程求1*2*3*4*5*6*7,将结果存入fac中并显示出来
时间: 2023-12-04 20:40:09 浏览: 70
一个用汇编语言写的计算器
以下是汇编语言实现求1*2*3*4*5*6*7的代码,并将结果存入fac中并显示出来:
```assembly
include io32.inc
.data
fac dword 1
.code
start:
main proc
mov ecx, 1
mov ebx, 7
loop1:
cmp ecx, ebx
jg endloop1
imul fac, ecx
inc ecx
jmp loop1
endloop1:
call dispuid
call dispcrlf
ret
main endp
end main
```
阅读全文