mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
9 lines
133 B
C++
9 lines
133 B
C++
#include "kernel.h"
|
|
|
|
void KernelMainThread()
|
|
{
|
|
KPrint("Kernel main thread started!");
|
|
// asm("int $0x1");
|
|
CPU::Stop();
|
|
}
|