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