| 216 | } |
| 217 | |
| 218 | int MemoryManager::toPDE(const int virtualAddress) |
| 219 | { |
| 220 | return (0xfffff000 + (((virtualAddress & 0xffc00000) >> 22) * 4)); |
| 221 | } |
| 222 | |
| 223 | int MemoryManager::toPTE(const int virtualAddress) |
| 224 | { |
nothing calls this directly
no outgoing calls
no test coverage detected