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 | 89.1k | { |
9 | 89.1k | if (feature == Sparc_FeatureV9) { |
10 | 88.3k | return mode & CS_MODE_V9; |
11 | 88.3k | } |
12 | 796 | return true; |
13 | 89.1k | } |