Why is this required ?
| 451 | |
| 452 | //Why is this required ? |
| 453 | void memMapKernelMem() |
| 454 | { |
| 455 | //lower 512 mb: direct map |
| 456 | //vtlb_VMap(0x00000000,0x00000000,0x20000000); |
| 457 | //0x8* mirror |
| 458 | vtlb_VMap(0x80000000, 0x00000000, _1mb*512); |
| 459 | //0xa* mirror |
| 460 | vtlb_VMap(0xA0000000, 0x00000000, _1mb*512); |
| 461 | } |
| 462 | |
| 463 | //what do do with these ? |
| 464 | void memMapSupervisorMem() |