summaryrefslogtreecommitdiff
path: root/reference/C/CONTRIB/SNIP/biport.c
diff options
context:
space:
mode:
Diffstat (limited to 'reference/C/CONTRIB/SNIP/biport.c')
-rwxr-xr-xreference/C/CONTRIB/SNIP/biport.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/reference/C/CONTRIB/SNIP/biport.c b/reference/C/CONTRIB/SNIP/biport.c
new file mode 100755
index 0000000..1b1e6bb
--- /dev/null
+++ b/reference/C/CONTRIB/SNIP/biport.c
@@ -0,0 +1,16 @@
+/*
+** BIPORT.C - Port TC/TC++/BC++ code using register pseudovariables
+**
+** public domain by Bob Stout
+*/
+
+#include "biport.h"
+
+union REGS BIP_regs_;
+struct SREGS BIP_sregs_;
+
+unsigned _pascal geninterrupt(int int_no)
+{
+ int86x(int_no, &BIP_regs_, &BIP_regs_, &BIP_sregs_);
+ return BIP_regs_.x.ax;
+}