This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
compilation/flap/questions/retrolixToX86_64/03.retrolix
2023-12-31 23:21:35 +01:00

12 lines
178 B
Text

globals (res)
res <- mul 1, 5;
res <- mul res, 4;
res <- mul res, 3;
res <- mul res, 2;
res <- mul res, 1;
debug:
%rdi <- copy res;
observe_int();
exit;
end