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/tests/06-Retrolix_to_x86-64/15-call-unknown-function.retrolix
Adrien Guatto 26259aa774 Publication du jalon 6
Le jalon 5 a été sauté.
2023-12-13 19:42:00 +01:00

19 lines
No EOL
293 B
Text

external printf
def print_one_int ()
local a1:
a1: a1 <- copy %rdi;
l00: %rdi <- copy "%d\n";
l11: %rsi <- copy a1;
l12: %rax <- copy 0;
l13: printf();
l14: ret;
end
globals (x)
local f:
l01: %rdi <- copy 37;
l02: f <- copy &print_one_int;
l03: call f();
l04: exit;
end