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/03-print-char.retrolix

9 lines
137 B
Text
Raw Normal View History

external printf
globals ()
l00: %rdi <- copy "%c\n";
l01: %rsi <- copy 'a';
l02: %rax <- copy 0;
l03: printf();
l04: exit;
end