如何保留低内存(操作系统前)?
背景:在操作系统启动之前,我需要保留低于 0xA0000 的内存量。 为此,我更改了 0040:0013 (或 0x413)字,它是低的数量可用内存(以 KiB 为单位)。
然而,Windows和其他操作系统使用E820h/INT15h来查询内存布局并且某些 BIOS:es 不反映对 E820h/INT15h BIOS 功能的 0x413 更改。 因此,如果需要的话,我还必须挂钩 E820h 功能。
问题:是否有另一种(更可靠的)方法在操作系统之前保留低内存? 或者除了挂钩 INT15h 之外的任何其他更改 E820h/INT15h 结果的方法(也许通过戳 EBDA?)
Background: I need to reserve an amount of memory below 0xA0000 prior to my operating system starts. To do this I change the 0040:0013 (or 0x413) word which is the amount of low memory available in KiB.
However, Windows and other operating systems use E820h/INT15h to query the memory layout and some BIOS:es doesn't reflect 0x413 changes to the E820h/INT15h BIOS function. Therefore I also have to hook the E820h function if needed.
Question: Is there another (more reliable) way to reserve low memory prior to the OS? Or any other way of changing the E820h/INT15h results other than hooking INT15h (by poking EBDA perhaps?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不这么认为,但如果你不做引导加载程序,你可以对操作系统进行半虚拟化。 您可以查看 Xen 虚拟机管理程序。
I don't think so, but if you are not doing a bootloader, you could para-virtualize the os. You could look at Xen hypervisor for it.