diff options
-rw-r--r-- | lib/fpu.c | 15 |
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")); +} |