mirror of
https://github.com/xcat2/xNBA.git
synced 2025-08-21 18:50:30 +00:00
14 lines
236 B
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 */
|
|
}
|