Line | Count | Source |
1 | /* Capstone Disassembly Engine */ | |
2 | /* By Rot127 <unisono@quyllur.org>, 2025 */ | |
3 | ||
4 | #include "SparcDisassemblerExtension.h" | |
5 | #include "SparcMCTargetDesc.h" | |
6 | ||
7 | bool Sparc_getFeatureBits(unsigned int mode, unsigned int feature) | |
8 | 72.5k | { |
9 | 72.5k | if (feature == Sparc_FeatureV9) { |
10 | 71.9k | return mode & CS_MODE_V9; |
11 | 71.9k | } |
12 | 617 | return true; |
13 | 72.5k | } |