aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/commands
diff options
context:
space:
mode:
authorMarvin Borner2019-11-23 00:36:28 +0100
committerMarvin Borner2019-11-23 00:36:28 +0100
commit45d9495e77dba212551ae9bc8e09b51e9ed6d324 (patch)
tree1e8ead9a55b41fa009c28823ca7a9ac0b1b5b2fe /src/kernel/commands
parent4b178c0feb4c415be36be0e4c0def8c447ed42af (diff)
Tried implementing memory based paging...
Also did many other fixes/improvements. While I think I did most things correct, the ACPI doesn't work anymore (triple fault) and the resolution detection fails with 0x2... :c
Diffstat (limited to 'src/kernel/commands')
-rw-r--r--src/kernel/commands/command.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kernel/commands/command.c b/src/kernel/commands/command.c
index 4ae8836..6b1afcc 100644
--- a/src/kernel/commands/command.c
+++ b/src/kernel/commands/command.c
@@ -4,6 +4,7 @@
#include <kernel/graphics/vesa.h>
#include <kernel/cmos/rtc.h>
#include <kernel/timer/timer.h>
+#include <mlibc/string.h>
int32_t starts_with(const char *a, const char *b) {
size_t length_pre = strlen(b);
@@ -25,7 +26,7 @@ void exec_command(char *command) {
else if (starts_with(command, "zzz"))
vesa_draw_string("Not implemented\n");
else if (starts_with(command, "time")) {
- vesa_draw_number(get_time());
+ vesa_draw_number((int) get_time());
vesa_draw_string("\n");
} else if (starts_with(command, "date"))
write_time();