| 13 | int DisassemblyManager::maxParamChars = 29; |
| 14 | |
| 15 | bool isInInterval(u32 start, u32 size, u32 value) |
| 16 | { |
| 17 | return start <= value && value <= (start+size-1); |
| 18 | } |
| 19 | |
| 20 | static u32 computeHash(u32 address, u32 size) |
| 21 | { |
no outgoing calls
no test coverage detected