summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/prefix/int19exit.c
blob: e7be06244787b93b52f738e40e252b353f52769f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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 */
}