| 4 | #define MAX(a,b) (((a)>(b))?(a):(b)) |
| 5 | |
| 6 | uint32_t parseCommand(uint32_t command, uint32_t from, uint32_t to) |
| 7 | { |
| 8 | uint32_t mask = ((1 << (to - from + 1)) - 1) << from; |
| 9 | return (command & mask) >> from; |
| 10 | } |
| 11 | |
| 12 | void* GetGP() |
| 13 | { |
no outgoing calls
no test coverage detected