===========================================================================
| 936 | |
| 937 | //=========================================================================== |
| 938 | bool _6502_IsOpcodeValid ( int iOpcode ) |
| 939 | { |
| 940 | if ((iOpcode & 0x3) == 0x3) |
| 941 | return false; |
| 942 | |
| 943 | if (islower( g_aOpcodes6502[ iOpcode ].sMnemonic[ 0 ] )) |
| 944 | return false; |
| 945 | |
| 946 | return true; |
| 947 | } |
| 948 | |
| 949 | // Assembler ________________________________________________________________ |
| 950 |