From 45d9495e77dba212551ae9bc8e09b51e9ed6d324 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 23 Nov 2019 00:36:28 +0100 Subject: 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 --- src/kernel/commands/command.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/kernel/commands/command.c') 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 #include #include +#include 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(); -- cgit v1.2.3