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/m6809/m6809.h | |
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/m6809/m6809.h')
-rw-r--r-- | src/emu/cpu/m6809/m6809.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/emu/cpu/m6809/m6809.h b/src/emu/cpu/m6809/m6809.h index ee8fde41de9..13ac4569210 100644 --- a/src/emu/cpu/m6809/m6809.h +++ b/src/emu/cpu/m6809/m6809.h @@ -7,9 +7,11 @@ #include "cpuintrf.h" -enum { +enum +{ M6809_PC=1, M6809_S, M6809_CC ,M6809_A, M6809_B, M6809_U, M6809_X, M6809_Y, - M6809_DP }; + M6809_DP +}; #define M6809_IRQ_LINE 0 /* IRQ line number */ #define M6809_FIRQ_LINE 1 /* FIRQ line number */ |