Luna/kernel/src/arch/CPU.h

10 lines
154 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();
}