GDT finally works

This commit is contained in:
2025-08-10 21:29:16 +02:00
parent f8f00cc608
commit 8ee1ea1292
36 changed files with 868 additions and 206 deletions

14
kernel/banner.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef BANNER_H_
#define BANNER_H_
#define BANNER_TEXT \
"___ ___ _____ _____ ______ _ _ \n" \
"| \\/ | | _ / ___| | ___ \\ (_) | | \n" \
"| . . |_ _ | | | \\ `--. | |_/ / __ ___ _ ___ ___| |_ \n" \
"| |\\/| | | | | | | | |`--. \\ | __/ '__/ _ \\| |/ _ \\/ __| __|\n" \
"| | | | |_| | \\ \\_/ /\\__/ / | | | | | (_) | | __/ (__| |_ \n" \
"\\_| |_/\\__, | \\___/\\____/ \\_| |_| \\___/| |\\___|\\___|\\__|\n" \
" __/ | _/ | \n" \
" |___/ |__/ \n" \
#endif // BANNER_H_