feat: introduced tasking, added paging (no vm), moved malloc, added

syscalls, other stuff
This commit is contained in:
2021-02-27 11:46:26 +01:00
parent 8f615b259c
commit 9f72d4bb1a
42 changed files with 907 additions and 292 deletions

View File

@@ -52,7 +52,7 @@ int strncmp(const char *s1, const char *s2, int n) {
if (s1[i] > s2[i]) {
return -1;
}
if (s2[i] < s1[i]) {
if (s1[i] < s2[i]) {
return 1;
}
}