如何使用 Visual Studio 构建内核映像?
我想使用 Visual C++ 为 x86 机器构建嵌入式内核。 我有一些要编译的 C 和汇编代码文件,我想以与 GRUB 等多重引导引导加载程序兼容的方式将它们全部链接在一起。
I'd like to build an embedded kernel for an x86 machine using Visual C++. I have some C and assembly code files to compile and I'd like to link them all together in a way that is compatible with a Multiboot bootloader like GRUB.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OSDev 在 Visual Studio 上有一个 wiki 条目,它可能会提供一些见解,尤其是 Kaushik Srenevasan 的 < a href="http://ksrenevasan.blogspot.com/2005/10/writing-multiboot-pe-kernels-using.html" rel="noreferrer">博客 有关 PE 内核主题的条目,旨在由基于多重引导的引导加载程序加载(例如GRUB)。
您应该了解一些大的、概括性的事情:
kmain
”)需要有__declspec(noreturn)
,并且您需要执行__asm { hlt }< /code> 而不是返回。
OSDev has a wiki entry on Visual Studio, that may provide some insight, especially with the links to Kaushik Srenevasan's blog entries on the subject of PE kernels designed to be loaded by multiboot-based bootloaders (like GRUB).
A couple of large, broad-strokes things you should know:
kmain
') needs to have__declspec(noreturn)
on it, and you will need to do an__asm { hlt }
instead of returning.