summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Forsyth <charles.forsyth@gmail.com>2013-06-07 08:48:57 +0000
committerCharles Forsyth <charles.forsyth@gmail.com>2013-06-07 08:48:57 +0000
commita4c1b2fe47152137ddc6716ab544ad6677c9c914 (patch)
treedfd85b7551185764020025a64b3b39271b1c9ae5
parent628c6d09a7f1687a6a835d839059ada4010fcd0f (diff)
remove Hp
-rw-r--r--Hp/s800/include/emu.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/Hp/s800/include/emu.h b/Hp/s800/include/emu.h
deleted file mode 100644
index 6bdc5056..00000000
--- a/Hp/s800/include/emu.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * system- and machine-specific declarations for emu:
- * floating-point save and restore, signal handling primitive, and
- * implementation of the current-process variable `up'.
- */
-
-extern Proc* getup();
-#define up (getup())
-
-/*
- * This structure must agree with FPsave and FPrestore asm routines
- */
-typedef struct FPU FPU;
-struct FPU
-{
- fp_control fsr;
-};
-
-typedef sigjmp_buf osjmpbuf;
-#define ossetjmp(buf) sigsetjmp(buf, 1)
-