diff options
author | 2008-08-13 02:48:52 +0000 | |
---|---|---|
committer | 2008-08-13 02:48:52 +0000 | |
commit | 1daf41e21826daaa7e136f095672035817afcea5 (patch) | |
tree | f6f543718bf84378508a6d80c042e47d5f16beb0 /src/emu/cpu/s2650 | |
parent | 0f0b9208f62f0b631f6d5e91d12d244da9bb5c5e (diff) |
Final CPU header updates. Mostly just re-naming the re-inclusions.
The structures/names were getting too complex for my macros to handle. They would require hand editing and my computer is too slow to keep re-compiling.
Passes a clean compile.
Diffstat (limited to 'src/emu/cpu/s2650')
-rw-r--r-- | src/emu/cpu/s2650/s2650.h | 11 | ||||
-rw-r--r-- | src/emu/cpu/s2650/s2650cpu.h | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/src/emu/cpu/s2650/s2650.h b/src/emu/cpu/s2650/s2650.h index 51c4a78e998..2c92c6c82e6 100644 --- a/src/emu/cpu/s2650/s2650.h +++ b/src/emu/cpu/s2650/s2650.h @@ -1,9 +1,12 @@ -#ifndef S2650_H -#define S2650_H +#pragma once + +#ifndef __S2650_H__ +#define __S2650_H__ #include "cpuintrf.h" -enum { +enum +{ S2650_PC=1, S2650_PS, S2650_R0, S2650_R1, S2650_R2, S2650_R3, S2650_R1A, S2650_R2A, S2650_R3A, S2650_HALT, S2650_SI, S2650_FO @@ -25,4 +28,4 @@ extern void s2650_get_info(UINT32 state, cpuinfo *info); extern offs_t s2650_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); -#endif +#endif /* __S2650_H__ */ diff --git a/src/emu/cpu/s2650/s2650cpu.h b/src/emu/cpu/s2650/s2650cpu.h index 5a61e5d4cb1..edd2c5f922c 100644 --- a/src/emu/cpu/s2650/s2650cpu.h +++ b/src/emu/cpu/s2650/s2650cpu.h @@ -31,5 +31,3 @@ #define R1 S.reg[1] #define R2 S.reg[2] #define R3 S.reg[3] - - |