blob: c14c87dd00d99dd7bb3877fdefe7619f3e32deca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"));
}
|