如何让 MASM32 项目在启动时运行?
我们都知道汇编语言几乎是最接近机器代码的语言。
但是我如何配置 BIOS 以便它在引导期间运行?
We all know that assembly language is almost the closest we can get to machine code.
But how can I configure the BIOS so that it gets run during bootstrap?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不知道。您将代码作为引导加载程序写入磁盘,然后 BIOS 将正常启动它。不要对包含您关心的任何内容(例如正在运行的操作系统)的磁盘执行此操作。这并不难做到,但是您确实有可能完全破坏您执行此操作的计算机上的任何数据,因此请务必小心。
You don't. You write the code onto a disk as a boot loader and then the BIOS will launch it normally. Don't do it to a disk that has anything on it that you care about (like a working OS). It's not hard to do, but you do have the potential to totally destroy any data on the machine you do this to, so use caution.