summaryrefslogtreecommitdiff
path: root/lib/fpu.c
blob: bb59aa329c9d8c4c633f2b7d0c1d65537ea77083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "fpu.h"
#include "types.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"));
}