#include "libc/stdio.h" #include "boot/multiboot.h" #include "core/mem.h" #include "core/gdt.h" #include "core/paging.h" #include "core/scheduler.h" #define TASK_WAIT 50000000 extern void interrupt_enable(); void utask(){ char *msg=(char*)PAGING_ENTRY_POINT_VIRT+300; msg[0]='A'; msg[1]='\0'; while(1){ asm("mov $0x1, %%eax;int $0x30"::"b"(msg)); for(int i=0;i