Add: build process for real hardware

This commit is contained in:
xamidev
2024-07-22 11:07:52 +02:00
parent 5eee67a0e5
commit 01a4016f15
6 changed files with 32 additions and 5 deletions

View File

@@ -17,8 +17,12 @@ void shell_install()
if (strcmp(input_buffer, "help") == 0)
{
printf("This is the Blank Operating System\ndesigned for fun by xamidev\n\nCommand help:\n\n\thelp - shows this message\n");
printf("This is the Blank Operating System\ndesigned for fun by xamidev\n\nCommand help:\n\n\thelp - shows this message\n\tpanic - makes the kernel panic\n");
}
else if (strcmp(input_buffer, "panic") == 0)
{
printf("%d", 4/0);
}
}
}
}