mirror of
https://github.com/ipxe/ipxe
synced 2025-12-26 09:32:33 +03:00
15 lines
291 B
C
15 lines
291 B
C
|
|
#include <gpxe/nap.h>
|
||
|
|
#include <realmode.h>
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Save power by halting the CPU until the next interrupt
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
static void bios_cpu_nap ( void ) {
|
||
|
|
__asm__ __volatile__ ( REAL_CODE ( "sti\n\t"
|
||
|
|
"hlt\n\t"
|
||
|
|
"cli\n\t" ) : : );
|
||
|
|
}
|
||
|
|
|
||
|
|
PROVIDE_NAP ( pcbios, cpu_nap, bios_cpu_nap );
|