独立的 32 位汇编程序
我是汇编新手,仍在努力获得汇编编程的一些基本基础。当我发现 32 位保护模式程序集过于依赖平台的库(例如 c 运行时库和 Windows dll)只是为了打印一个简单的字符串这一事实时,我感到有点震惊。例如,_printf 调用。
32 位保护模式程序集是否可以在不依赖平台库的情况下完成一些重要的例程?操作系统是否允许此类“独立”32 位程序在其保护模式下运行,但不使用操作系统的任何服务?
我的问题是正确的问题吗? :p
I am a newbie in assembly and still trying to gain some basic foundation on assembly programming. I was a bit shocked when I discovered the fact that 32-bit protected mode assembly relies too much on the platform's libraries like c runtime library and Windows dlls just to print a simple string. e.g, the _printf call.
Is it possible for a 32-bit protected mode assembly to accomplish some serious routines without relying on the platform's libraries? Will the OS allow for such 'standalone' 32-bit programs to operate in their protected mode but without using any of the OS's services?
Is my question the correct question to ask? :p
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 Intel 机器上使用中断来完成此操作。但它太复杂了,无法为每个要打印的字符/字符串创建调用。好奇 - 你为什么要这样做?
You can do this using Interrupts on a Intel machine. But it is way too complex to create a call for every character/string to print. Curious - Why do you want to do this ?