diff options
author | Marvin Borner | 2019-10-12 23:28:01 +0200 |
---|---|---|
committer | Marvin Borner | 2019-10-12 23:31:27 +0200 |
commit | 876df2125f4f24803d5471894e5308e7425ebfd2 (patch) | |
tree | a91b066e93c6694c41384ae8f2e296167715768c /src/kernel/lib/string.c | |
parent | b2f80382659e739d5e37eefff1ebcdfd023bb9fb (diff) |
Paging and heap rewrite
VESA drawing causes a Page fault because it tries to use a pointer to the framebuffer which was created before the paging has been initialized. If the resolution is set after the paging has been initialized the CPU throws a triple fault because the int32 call can not happen with paging turned on. To be fixed soon!
Diffstat (limited to 'src/kernel/lib/string.c')
-rw-r--r-- | src/kernel/lib/string.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/kernel/lib/string.c b/src/kernel/lib/string.c index ef746d6..1e41d15 100644 --- a/src/kernel/lib/string.c +++ b/src/kernel/lib/string.c @@ -34,20 +34,3 @@ char *strcpy(char *dest, const char *src) { dest[i] = 0; return dest; } - -void *itoa(int i, char *b, int base) { - int temp_i; - temp_i = i; - int stringLen = 1; - - while ((int) temp_i / base != 0) { - temp_i = (int) temp_i / base; - stringLen++; - } - - temp_i = i; - do { - *(b + stringLen - 1) = (temp_i % base) + '0'; - temp_i = (int) temp_i / base; - } while (stringLen--); -}
\ No newline at end of file |