分页以及逻辑和物理地址
有人有什么建议吗?
由于页号是22位,偏移量是10位,我们如何确定引用了什么?逻辑 4870 映射到第 4 页,但是如何计算其余部分呢?谢谢。
Does anyone have any suggestions?
Since the page # is 22 bits and the offset is 10 bits, how can we determine what is referenced? Logical 4870 maps to page #4 but how do go about calculating the rest? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我看到您已经知道如何将地址拆分为页面和偏移量。页表允许您在物理页和逻辑页之间进行转换。然后,您只需将转换后的页面和原始偏移量重新组装回地址即可。
I see you already know how to split up the address into its page and offset. The page table allows you to convert between physical and logical pages. You then just need to reassemble the converted page and original offset back into an address.