summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/mips/r3000.h
diff options
context:
space:
mode:
author Derrick Renaud <derrickr@mamedev.org>2008-08-12 03:40:09 +0000
committer Derrick Renaud <derrickr@mamedev.org>2008-08-12 03:40:09 +0000
commitd5d5d9449bf6bed24f4bd6df287029f2aaf89342 (patch)
treeb6e157719686e44d66162165e5e60c45c99d0732 /src/emu/cpu/mips/r3000.h
parent7e7e4ef30f78cdc4afb5494a38fac60f7bf59f56 (diff)
structure, lower-casing functions and re-inclusion updates of the src\emu\cpu headers J - M.
Diffstat (limited to 'src/emu/cpu/mips/r3000.h')
-rw-r--r--src/emu/cpu/mips/r3000.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/emu/cpu/mips/r3000.h b/src/emu/cpu/mips/r3000.h
index f26631549b2..2ccd86a9aec 100644
--- a/src/emu/cpu/mips/r3000.h
+++ b/src/emu/cpu/mips/r3000.h
@@ -6,8 +6,8 @@
***************************************************************************/
-#ifndef _R3000_H
-#define _R3000_H
+#ifndef __R3000_H__
+#define __R3000_H__
#include "cpuintrf.h"
@@ -47,7 +47,8 @@ enum
STRUCTURES
***************************************************************************/
-struct r3000_config
+typedef struct _r3000_cpu_core r3000_cpu_core;
+struct _r3000_cpu_core
{
UINT8 hasfpu; /* 1 if we have an FPU, 0 otherwise */
size_t icache; /* code cache size */
@@ -65,4 +66,4 @@ extern void r3000le_get_info(UINT32 state, cpuinfo *info);
extern void r3041be_get_info(UINT32 state, cpuinfo *info);
extern void r3041le_get_info(UINT32 state, cpuinfo *info);
-#endif /* _JAGUAR_H */
+#endif /* __R3000_H__ */