Prototype of X86_64 migration

This commit is contained in:
Roman Venediktov 2024-01-30 18:16:44 +01:00
parent 3fdc3e7f2a
commit e77433e51c
21 changed files with 599 additions and 7165 deletions

View file

@ -0,0 +1,10 @@
fun f (a, b, c, d, e) {
var i = d / b;
write (a);
write (b);
write (c);
write (d);
write (e)
}
f (1, 2, 3, 4, 5)