如何使用 Visual Studio 构建内核映像?

发布于 2024-07-15 23:40:50 字数 97 浏览 6 评论 0原文

我想使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稍尽春風 2024-07-22 23:40:50

OSDev 在 Visual Studio 上有一个 wiki 条目,它可能会提供一些见解,尤其是 Kaushik Srenevasan 的 < a href="http://ksrenevasan.blogspot.com/2005/10/writing-multiboot-pe-kernels-using.html" rel="noreferrer">博客 有关 PE 内核主题的条目,旨在由基于多重引导的引导加载程序加载(例如GRUB)。

您应该了解一些大的、概括性的事情:

  • 在多重引导标头中,您需要使用 AOUT kludge。
  • 您需要向链接器指定 /BASE:0x100000 参数,因此最终的二进制代码基于引导加载程序将其放置的位置。
  • 您的内核入口点(通常称为“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:

  • In the multiboot header, you need to use the AOUT kludge.
  • You need to specify the /BASE:0x100000 argument to the linker, so the final binary code is based to where the bootloader is going to put it.
  • Your kernel's entry point (usually called 'kmain') needs to have __declspec(noreturn) on it, and you will need to do an __asm { hlt } instead of returning.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文