10 lines
154 B
C
10 lines
154 B
C
|
#pragma once
|
||
|
#include <Result.h>
|
||
|
|
||
|
namespace CPU
|
||
|
{
|
||
|
Result<const char*> identify();
|
||
|
void platform_init();
|
||
|
|
||
|
[[noreturn]] void efficient_halt();
|
||
|
}
|