| 122 | } |
| 123 | |
| 124 | int decode_iclass_systeminstrs(context *ctx, Instruction *dec) |
| 125 | { |
| 126 | uint32_t L=(INSWORD>>21)&1; |
| 127 | if(!L) return SYS(ctx, dec); // -> SYS_CR_systeminstrs |
| 128 | if(L) return SYSL(ctx, dec); // -> SYSL_RC_systeminstrs |
| 129 | UNMATCHED; |
| 130 | } |
| 131 | |
| 132 | int decode_iclass_systeminstrswithreg(context *ctx, Instruction *dec) |
| 133 | { |
no test coverage detected