Implement periodt variant of instructions.

This commit is contained in:
Skyth
2024-09-12 18:59:24 +03:00
parent f8353aa1e2
commit f96d2c2879
4 changed files with 52 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
int add(int a, int b)
{
int c = a + b;
return c == 0 ? 50000 : c;
}
extern "C" int _start()
{
return add(1, 2);
}

Binary file not shown.