gint/src/keyboard/sleep.c

14 lines
150 B
C

#include <internals/keyboard.h>
/*
sleep()
Puts the CPU to sleep and waits for an interrupt.
*/
void sleep(void)
{
__asm__
(
"sleep\n\t"
);
}