mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-30 00:07:59 +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();
|
|
}
|