mirror of
https://github.com/janishutz/eth-summaries.git
synced 2026-01-12 14:18:23 +00:00
8 lines
209 B
ArmAsm
8 lines
209 B
ArmAsm
factorial:
|
|
movl $1, %eax # Setup
|
|
.AGAIN:
|
|
imull %edi, %eax # %eax *= %edi
|
|
subl $1, %edi # %edi--
|
|
cmpl $1, %edi # 1 < %edi ?
|
|
jg .AGAIN # go back, if yes
|
|
ret |