add basic kernel crash screen

This commit is contained in:
Robert 2023-09-05 23:48:55 +02:00
parent 3ef9be01ae
commit 43278fb351
5 changed files with 63 additions and 1 deletions

View file

@ -0,0 +1,7 @@
#ifndef _CLIPPER_HAVARIE_H_
#define _CLIPPER_HAVARIE_H_
void capsize() __attribute__((noreturn));
void print_havarie_msg();
#endif // _CLIPPER_HAVARIE_H_

View file

@ -33,6 +33,9 @@ enum text_screen_attribute {
void tsinit(void);
void tsclear_screen();
void tscursor_set(uint8_t x, uint8_t y);
void tsputch(char ch, uint8_t color);
void tsputs(const char* str, uint8_t color);

View file

@ -3,6 +3,8 @@
#include <stddef.h>
#include <stdint.h>
#include "internal/havarie.h"
#if defined(__linux__)
# error "Please use a platform agnostic compiler"
#endif
@ -21,5 +23,7 @@ void kmain(void) {
tsprintf("Test | Integers: %d, Unsigned: %u, Hexadecimal: %x\n", -48, 28493, 28493);
capsize();
return;
}

37
src/kernel/lib/havarie.c Normal file
View file

@ -0,0 +1,37 @@
#include "internal/havarie.h"
#include "internal/text_screen.h"
void capsize() {
print_havarie_msg();
asm("cli\n"
"hlt");
for(;;);
}
void print_havarie_msg() {
tsclear_screen();
tscursor_set(0, 0);
tsputs("Havarie - the clipper has capsized\n\n\n", TEXT_SCREEN_BG_BLACK | TEXT_SCREEN_FG_LIGHT_CYAN);
int eax, ebx, ecx, edx, esi, edi, esp, ebp;
asm("mov %%eax, %[eax]\n"
"mov %%ebx, %[ebx]\n"
"mov %%ecx, %[ecx]\n"
"mov %%edx, %[edx]\n"
"mov %%esi, %[esi]\n"
"mov %%edi, %[edi]\n"
"mov %%esp, %[esp]\n"
"mov %%ebp, %[ebp]\n"
: [eax]"=m" (eax), [ebx]"=m" (ebx), [ecx]"=m" (ecx), [edx]"=m" (edx),
[esi]"=m" (esi), [edi]"=m" (edi), [esp]"=m" (esp), [ebp]"=m" (ebp)
);
tsprintf("eax=0x%x\t\tesi=0x%x\n", eax, esi);
tsprintf("ebx=0x%x\t\tedi=0x%x\n", ebx, edi);
tsprintf("ecx=0x%x\t\tesp=0x%x\n", ecx, esp);
tsprintf("edx=0x%x\t\tebp=0x%x\n", edx, ebp);
}

View file

@ -28,6 +28,17 @@ void tsinit(void) {
outb(0x3D5, 0x20);
}
void tsclear_screen() {
for (uint32_t i = 0; i < ((SCREEN_WIDTH * SCREEN_HEIGHT) >> 2); i++) {
((uint32_t*)videomem)[i] = (uint32_t)0;
}
}
void tscursor_set(uint8_t x, uint8_t y) {
cursor_x = x;
cursor_y = y;
}
void tsputch(char ch, uint8_t color) {
const char tmp[2] = { ch, 0 };
tsputs(tmp, color);
@ -46,7 +57,7 @@ void handle_special_char(char c) {
} break;
case '\r': cursor_x = 0; break;
case '\t': cursor_x += 4; break;
case '\t': cursor_x += 4; cursor_x -= cursor_x % 4; break;
}
}