Add: brainfuck interpreter; documentation; uptime

This commit is contained in:
xamidev
2024-08-06 15:29:13 +02:00
parent fc17e5eade
commit 98b79d7fcf
10 changed files with 156 additions and 10 deletions

View File

@@ -19,3 +19,8 @@ void delay(int ticks)
eticks = global_ticks + ticks;
while (global_ticks < eticks);
}
int uptime()
{
return global_ticks;
}