diff options
Diffstat (limited to 'src/devices/cpu/rw5000/rw5000d.cpp')
-rw-r--r-- | src/devices/cpu/rw5000/rw5000d.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/devices/cpu/rw5000/rw5000d.cpp b/src/devices/cpu/rw5000/rw5000d.cpp index ab980f9c5d3..e0ca8bc5e56 100644 --- a/src/devices/cpu/rw5000/rw5000d.cpp +++ b/src/devices/cpu/rw5000/rw5000d.cpp @@ -32,6 +32,18 @@ offs_t rw5000_common_disassembler::increment_pc(offs_t pc) // common lookup tables +enum e_mnemonics : unsigned +{ + mILL, + mNOP, mRSC, mSC, mTC, mTAM, + mLAX, mADX, mCOMP, mATB, mATBZ, + mLDA, mEXC0, mEXCP, mEXCM, mADD, + mLB0, mLB7, mLB8, mLB9, mLB10, mLB11, + mRSM, mSM, mTM, + mTL, mTRA0, mTRA1, mRET, + mTKB, mTKBS, mTDIN, mREAD, mKSEG, mMTD +}; + const char *const rw5000_common_disassembler::s_name[] = { "?", |