Some missing extern's in cpu/x86_ops.h.
This commit is contained in:
@@ -44,7 +44,7 @@
|
|||||||
typedef int (*OpFn)(uint32_t fetchdat);
|
typedef int (*OpFn)(uint32_t fetchdat);
|
||||||
|
|
||||||
#ifdef USE_DYNAREC
|
#ifdef USE_DYNAREC
|
||||||
void x86_setopcodes(const OpFn *opcodes, const OpFn *opcodes_0f,
|
extern void x86_setopcodes(const OpFn *opcodes, const OpFn *opcodes_0f,
|
||||||
const OpFn *dynarec_opcodes,
|
const OpFn *dynarec_opcodes,
|
||||||
const OpFn *dynarec_opcodes_0f);
|
const OpFn *dynarec_opcodes_0f);
|
||||||
|
|
||||||
@@ -187,7 +187,7 @@ extern const OpFn dynarec_ops_REPNE[1024];
|
|||||||
extern const OpFn dynarec_ops_3DNOW[256];
|
extern const OpFn dynarec_ops_3DNOW[256];
|
||||||
extern const OpFn dynarec_ops_3DNOWE[256];
|
extern const OpFn dynarec_ops_3DNOWE[256];
|
||||||
#else
|
#else
|
||||||
void x86_setopcodes(const OpFn *opcodes, const OpFn *opcodes_0f);
|
extern void x86_setopcodes(const OpFn *opcodes, const OpFn *opcodes_0f);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@@ -331,7 +331,7 @@ extern const OpFn ops_3DNOW[256];
|
|||||||
extern const OpFn ops_3DNOWE[256];
|
extern const OpFn ops_3DNOWE[256];
|
||||||
|
|
||||||
|
|
||||||
void x86_setopcodes_2386(const OpFn *opcodes, const OpFn *opcodes_0f);
|
extern void x86_setopcodes_2386(const OpFn *opcodes, const OpFn *opcodes_0f);
|
||||||
|
|
||||||
extern const OpFn *x86_2386_opcodes;
|
extern const OpFn *x86_2386_opcodes;
|
||||||
extern const OpFn *x86_2386_opcodes_0f;
|
extern const OpFn *x86_2386_opcodes_0f;
|
||||||
@@ -354,6 +354,9 @@ extern const OpFn *x86_2386_opcodes_df_a32;
|
|||||||
extern const OpFn *x86_2386_opcodes_REPE;
|
extern const OpFn *x86_2386_opcodes_REPE;
|
||||||
extern const OpFn *x86_2386_opcodes_REPNE;
|
extern const OpFn *x86_2386_opcodes_REPNE;
|
||||||
|
|
||||||
|
extern const OpFn ops_2386_186[1024];
|
||||||
|
extern const OpFn ops_2386_186_0f[1024];
|
||||||
|
|
||||||
extern const OpFn ops_2386_286[1024];
|
extern const OpFn ops_2386_286[1024];
|
||||||
extern const OpFn ops_2386_286_0f[1024];
|
extern const OpFn ops_2386_286_0f[1024];
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user