summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/prefix/int19exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/i386/prefix/int19exit.c')
-rw-r--r--src/arch/i386/prefix/int19exit.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/arch/i386/prefix/int19exit.c b/src/arch/i386/prefix/int19exit.c
new file mode 100644
index 00000000..e7be0624
--- /dev/null
+++ b/src/arch/i386/prefix/int19exit.c
@@ -0,0 +1,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 */
+}