I have the following page table of process1
:
Assuming that the paging system works with 16bit
addresses and page size is 4k
And I want to convert the logical address 16000
to a physical address .
I'm a little bit new in this topic so go easy on me :
Partial solution : The address 16000
fits cell number 3
in the page table , so I guess
that I need to work with that cell and its stored frame - 2
.
How can I find the offset and the physical address now ?
Thanks