Hello, I am a little confused with the mechanism for address translation.
the values given are the following :
- IP 3000
- PTBR 29696
The operation given to get the logical page is :
IP / 512
The operation given to get the location of physical page number :
logical page * 2 + PTBR
so I get the following results :
3000 / 512 = 5
5 * 2 + 29696 = 29706
But the answers given are 29714.
I do not understand where I am making an error so as to not get the proper results.
thanks for your help.