Rebrand to XenonRecomp.

This commit is contained in:
Skyth
2025-01-19 22:39:12 +03:00
parent 7fb8af1bad
commit 87e350906b
54 changed files with 69 additions and 64 deletions

View File

@@ -0,0 +1,15 @@
int loop(int a)
{
int result = 0;
for (int i = 0; i < a; i++)
{
result = result * 31 + i;
result *= result;
}
return result;
}
extern "C" int _start()
{
return loop(30);
}