Calculate size of region using its base and limit
| 34 | |
| 35 | //Calculate size of region using its base and limit |
| 36 | UINT32 calculateRegionSize(const UINT16 base, const UINT16 limit) |
| 37 | { |
| 38 | if (limit) |
| 39 | return (limit + 1 - base) * 0x1000; |
| 40 | return 0; |
| 41 | } |
no outgoing calls
no test coverage detected