6
This commit is contained in:
parent
2b7de0b06b
commit
ccf1f51a75
1 changed files with 25 additions and 0 deletions
|
@ -0,0 +1,25 @@
|
|||
def fact ()
|
||||
%rax <- copy 1;
|
||||
|
||||
condition:
|
||||
jumpif lte %rdi, 1 -> fin, boucle;
|
||||
|
||||
boucle:
|
||||
%rax <- mul %rax, %rdi;
|
||||
%rdi <- sub %rdi, 1;
|
||||
jump condition;
|
||||
|
||||
fin:
|
||||
ret;
|
||||
end
|
||||
|
||||
globals (x)
|
||||
x <- copy 5;
|
||||
|
||||
%rdi <- copy x;
|
||||
fact();
|
||||
x <- copy %rax;
|
||||
|
||||
%rdi <- copy x;
|
||||
observe_int();
|
||||
end
|
Reference in a new issue