fix: remove the kernel process and add a shell process (still not working tho)

This commit is contained in:
0x35c
2025-11-05 16:46:55 +01:00
parent 374ea13173
commit 359484b2e4
5 changed files with 34 additions and 22 deletions

View File

@ -13,7 +13,7 @@ struct frame_zone *head;
void switch_pd(uint32_t *pd, uint32_t *cr3)
{
// current_pd = pd;
current_pd = pd;
asm volatile("mov %0, %%cr3" ::"r"(cr3));
}