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