独立的 32 位汇编程序

发布于 2024-10-19 01:17:05 字数 236 浏览 6 评论 0原文

我是汇编新手,仍在努力获得汇编编程的一些基本基础。当我发现 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 技术交流群。

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

发布评论

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

评论(1

仅冇旳回忆 2024-10-26 01:17:05

您可以在 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 ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文