Files
ipxe/src/arch/x86/interface/pcbios/bios_nap.c

17 lines
318 B
C
Raw Normal View History

#include <ipxe/nap.h>
2008-10-12 23:34:45 +01:00
#include <realmode.h>
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
2008-10-12 23:34:45 +01:00
/**
* Save power by halting the CPU until the next interrupt
*
*/
static void bios_cpu_nap ( void ) {
__asm__ __volatile__ ( "sti\n\t"
"hlt\n\t"
"cli\n\t" );
2008-10-12 23:34:45 +01:00
}
PROVIDE_NAP ( pcbios, cpu_nap, bios_cpu_nap );