11 lines
176 B
Text
11 lines
176 B
Text
globals (res)
|
|
res <- copy 1;
|
|
res <- mul res, 5;
|
|
res <- mul res, 4;
|
|
res <- mul res, 3;
|
|
res <- mul res, 2;
|
|
res <- mul res, 1;
|
|
|
|
%rdi <- copy res;
|
|
print_int();
|
|
end
|