blob: cfac5baa61b479fe94dc6ecca3fe7c3bcfd74d34 (
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"));
}
|