summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorbiouman <>2001-04-15 02:12:40 +0000
committerbiouman <>2001-04-15 02:12:40 +0000
commitdff18f36172e0209c5dffefe54ec61185f7a8aba (patch)
treed805ae78549361e8c991ad2dda2db3a90a4525ee /lib
parent62480cd55b67e10128b9a49821d94c3c5117830f (diff)
*** empty log message ***
Diffstat (limited to 'lib')
-rw-r--r--lib/fpu.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/fpu.c b/lib/fpu.c
new file mode 100644
index 0000000..c14c87d
--- /dev/null
+++ b/lib/fpu.c
@@ -0,0 +1,15 @@
+#include "fpu.h"
+#include "archi.h"
+#include "exceptions.h"
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#else
+#define _(x) x
+#endif
+
+
+void fpu(Uint32 opcode)
+{
+ exception(1,_("FPU not implemented"));
+}