Initialize boot CPU structures inside kernel on i686 architecture
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-01-29 10:54:52 +01:00
parent 7ac434cb99
commit bca7ac41b8
2 changed files with 191 additions and 0 deletions

View File

@@ -8,3 +8,12 @@
#include "xtos.h"
/* Initial GDT */
KGDTENTRY ArInitialGdt[GDT_ENTRIES] = {0};
/* Initial IDT */
KIDTENTRY ArInitialIdt[IDT_ENTRIES] = {0};
/* Initial TSS */
KTSS ArInitialTss;