david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/arch/i386/prefix/int19exit.c

14 lines
236 B
C

#include "bochs.h"
#include "realmode.h"
/*
* The "exit via INT 19" exit path. INT 19 is the old (pre-BBS) "boot
* system" interrupt.
*
*/
void exit_via_int19 ( struct real_mode_regs *rm_regs ) {
bochsbp();
/* Placeholder */
}