测试本机 x86 程序,构建可启动映像/驱动器
我有下一个问题:我正在使用 NASM 并构建一些本机并以这种方式编译它:
nasm -f bin source -o out
我正在获取 x86 的本机程序。
现在最有趣的是,我怎样才能使它可启动然后测试它?
我认为有 3 种方法可以启动(但对我来说,它们都失败了:()
- 使用 mkbt 实用程序(或其他类似的软件)将其写入软盘
- 编辑可启动扇区
- 构建 ISO 映像,并手动 将内存扇区写入 USB/SD 卡或其他驱动程序
至于测试,每次重新启动 PC 都非常糟糕,因此最好使用一些虚拟操作系统软件,如 Vbox、VMWare 等。
所以我使用了 VBox。 为了构建 ISO - 我使用 CDBurnerXP。
使用 cdburner,我为我的本机程序选择了可引导扇区,然后在 Vbox 中选择新的 ISO 作为我的程序引导的磁盘。
结果总是空屏,没有显示错误,什么都没有...
我想,我有很多错误...
使用 mkbt,我无法将其写入 USB 驱动程序...我没有软盘现在,所以我无法将映像写入软盘,mkbt 无法写入 USB...:(
我做错了什么?
我该如何解决我的问题?
I have the next problem: I'm working with NASM and building some native and compiling it on this way:
nasm -f bin source -o out
I'm getting my native program for x86.
And now the most interesting, how can I make it bootable and then test it?
As I think there are 3 ways to make bootable ( but for me, all they has failed :( )
- using mkbt utility ( or another soft which is similar ) to write it to floppy disk
- building ISO image, with editing bootable sector in it
- manually write memory sector to usb/sd-card or another driver
As for testing, all times rebooting PC is very bad, so it's better to use some Virtual OS soft like Vbox, VMWare etc..
So I used VBox for this.
For building ISO - I used CDBurnerXP.
With cdburner I have optioned bootable sector for my native program, then choose new ISO in Vbox as disk from which will my program boot.
The result is always empty screen, no errors are showed, just nothing...
I think, that I have many errors...
Using mkbt, I can't write it to usb driver.... I don't have flooppy now, so I'm not able to write image to floppy, mkbt can't write to usb... :(
What do I wrong?
How can I solve my problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需这样做:
nasm -f bin -o boot.bin boot.asm
qemu -boot order=a -fda boot.bin
您应该会看到该消息。对于其他模拟器,您需要将图像填充到
1474560 字节。
启动.asm:
Just do this:
nasm -f bin -o boot.bin boot.asm
qemu -boot order=a -fda boot.bin
And you should see the message. For other emulators you'll want to pad the image to
1474560 bytes.
boot.asm: