Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

int19exit.c 236B

12345678910111213
  1. #include "bochs.h"
  2. #include "realmode.h"
  3. /*
  4. * The "exit via INT 19" exit path. INT 19 is the old (pre-BBS) "boot
  5. * system" interrupt.
  6. *
  7. */
  8. void exit_via_int19 ( struct real_mode_regs *rm_regs ) {
  9. bochsbp();
  10. /* Placeholder */
  11. }