You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bios_nap.c 324B

12345678910111213141516
  1. #include <ipxe/nap.h>
  2. #include <realmode.h>
  3. FILE_LICENCE ( GPL2_OR_LATER );
  4. /**
  5. * Save power by halting the CPU until the next interrupt
  6. *
  7. */
  8. static void bios_cpu_nap ( void ) {
  9. __asm__ __volatile__ ( REAL_CODE ( "sti\n\t"
  10. "hlt\n\t"
  11. "cli\n\t" ) : : );
  12. }
  13. PROVIDE_NAP ( pcbios, cpu_nap, bios_cpu_nap );