blob: b91269652f6a8002f2e48ae48c8babf8e827d268 [file] [log] [blame]
#include <inc/cpu.h>
void cpuInit(void)
{
/* nothing to do for x86 */
}
uint64_t cpuIntsOff(void)
{
/* no such luck */
return 0;
}
uint64_t cpuIntsOn(void)
{
/* no such luck */
return 0;
}
void cpuIntsRestore(uint64_t state)
{
/* no such luck */
}