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
2023-12-31 23:21:35 +01:00

12 lines
143 B
Text

globals (x, y, z, k)
x <- copy 6;
y <- copy 7;
z <- mul y, x;
k <- sub z, x;
debug:
%rdi <- copy k;
observe_int();
exit;
end