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.

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. }