diff options
Diffstat (limited to 'src/emu/cpu/m6502/m6502.h')
-rw-r--r-- | src/emu/cpu/m6502/m6502.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/cpu/m6502/m6502.h b/src/emu/cpu/m6502/m6502.h index 766f30a1fe3..0588442e9bd 100644 --- a/src/emu/cpu/m6502/m6502.h +++ b/src/emu/cpu/m6502/m6502.h @@ -97,7 +97,7 @@ protected: }; enum { - STATE_RESET = 0x100, + STATE_RESET = 0xff00, }; enum { @@ -182,6 +182,7 @@ protected: UINT8 Y; /* Y index register */ UINT8 P; /* Processor status */ UINT8 IR; /* Prefetched instruction register */ + int inst_state_base; /* Current instruction bank */ memory_interface *mintf; int inst_state, inst_substate; |