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/02.retrolix

13 lines
143 B
Text
Raw Permalink Normal View History

2023-12-31 15:32:46 +01:00
globals (x, y, z, k)
x <- copy 6;
y <- copy 7;
z <- mul y, x;
k <- sub z, x;
2023-12-31 23:21:35 +01:00
debug:
%rdi <- copy k;
observe_int();
2023-12-31 23:16:39 +01:00
exit;
2023-12-31 15:32:46 +01:00
end