Add: begin shell with help command

This commit is contained in:
xamidev
2024-07-21 15:37:32 +02:00
parent 05393b36f8
commit 5eee67a0e5
8 changed files with 43 additions and 6 deletions

View File

@@ -4,8 +4,6 @@
#include "idt.h"
#include "system.h"
#define BUFFER_SIZE 256
int kmain(int retvalue)
{
@@ -34,10 +32,7 @@ int kmain(int retvalue)
//timer_install();
keyboard_install();
char input_buffer[BUFFER_SIZE];
colorputs("Enter something: ", 9);
get_input(input_buffer, BUFFER_SIZE);
printf("\nYou entered: %s\n", input_buffer);
shell_install();
return retvalue;
}