diff options
author | Marvin Borner | 2019-11-30 16:21:57 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-30 16:21:57 +0100 |
commit | ac947d45c288f62e927895afe7cd6a722ffdd8f8 (patch) | |
tree | cb9ed1bc1713c484b6846f068dca98e0dfc0cbc0 /src/kernel/commands | |
parent | 0e94325936030990ac95b9ca90382aa265c95818 (diff) |
Replaced vesa print functions with printf
Diffstat (limited to 'src/kernel/commands')
-rw-r--r-- | src/kernel/commands/command.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/kernel/commands/command.c b/src/kernel/commands/command.c index 9b6060e..c85356b 100644 --- a/src/kernel/commands/command.c +++ b/src/kernel/commands/command.c @@ -5,6 +5,7 @@ #include <kernel/cmos/rtc.h> #include <kernel/timer/timer.h> #include <mlibc/string.h> +#include <mlibc/stdio.h> int32_t starts_with(const char *a, const char *b) { @@ -16,24 +17,23 @@ int32_t starts_with(const char *a, const char *b) void exec_command(char *command) { if (starts_with(command, "ls")) - vesa_draw_string("Listing files\n"); + printf("Listing files\n"); else if (starts_with(command, "help")) - vesa_draw_string("I can't help you write now\n"); + printf("I can't help you write now\n"); else if (starts_with(command, "ping")) - vesa_draw_string("pong!\n"); + printf("pong!\n"); else if (starts_with(command, "clear")) vesa_clear(); else if (starts_with(command, "shutdown") || starts_with(command, "exit")) acpi_poweroff(); else if (starts_with(command, "zzz")) - vesa_draw_string("Not implemented\n"); - else if (starts_with(command, "time")) { - vesa_draw_number((int) get_time()); - vesa_draw_string("\n"); - } else if (starts_with(command, "date")) + printf("Not implemented\n"); + else if (starts_with(command, "time")) + printf("%d\n", (int) get_time()); + else if (starts_with(command, "date")) write_time(); else if (starts_with(command, "reboot")) reboot(); else if (command[0] != 0) - vesa_draw_string("Command not found!\n"); + warn("Command not found!"); } |