Luna/kernel/src/arch/CPU.h

12 lines
194 B
C
Raw Normal View History

2022-11-15 18:10:32 +00:00
#pragma once
#include <Result.h>
namespace CPU
{
Result<const char*> identify();
void platform_init();
[[noreturn]] void efficient_halt();
void switch_kernel_stack(u64 top);
2022-11-15 18:10:32 +00:00
}