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

8 lines
122 B
Text
Raw Normal View History

external printf
globals ()
l00: %rdi <- copy "Hello world!\n";
l01: %rax <- copy 0;
l02: printf();
l03: exit;
end