Hi,
You didn't specify any architecture, so I'll presume you mean x86 (32-bit).
The cr3 register holds the physical address of the page directory. The page directory contains 1024 entries, each one holding the physical address of one page table. Each page table contains 1024 entries, each one holding the physical address of one page. Each page is 4096 bytes long.
The first entry of the first page table described in the page directory corresponds to virtual address 0x00000000.
The second entry of the first page table described in the page directory corresponds to virtual address 0x00001000.
The third entry of the first page table described in the page directory corresponds to virtual address 0x00002000.
...
The 1024th entry of the first page table described in the page directory corresponds to virtual address 0x003FF000.
The first entry of the second page table described in the page directory corresponds to virtual address 0x00400000.
The second entry of the second page table described in the page directory corresponds to virtual address 0x00401000.
The third entry of the second page table described in the page directory corresponds to virtual address 0x00402000.
...
The 1024th entry of the second page table described in the page directory corresponds to virtual address 0x007FF000.
The first entry of the third page table described in the page directory corresponds to virtual address 0x00800000.
The second entry of the third page table described in the page directory corresponds to virtual address 0x00801000.
The third entry of the third page table described in the page directory corresponds to virtual address 0x00802000.
...
The 1024th entry of the third page table described in the page directory corresponds to virtual address 0x00BFF000.
...
The first entry of the 1024th page table described in the page directory corresponds to virtual address 0xFFC00000.
The second entry of the 1024th page table described in the page directory corresponds to virtual address 0xFFC01000.
The third entry of the 1024th page table described in the page directory corresponds to virtual address 0xFFC02000.
...
The 1024th entry of the 1024th page table described in the page directory corresponds to virtual address 0xFFFFF000.
Also, it is not our wiki. The wiki is here for everyone.
Hope this helps.
Regards,
glauxosdever