vista 装配中的图形适配器问题

发布于 2024-07-29 06:02:35 字数 78 浏览 4 评论 0原文

当我想在 Vista 的 Assembly 中切换到 GA 时,它给了我一个致命错误,它只是说“我不支持 16 位 GA”。 我应该怎么办?

When I want to switch to GA in Assembly with Vista it gives me a fatal error and it simply says "I don't support 16bit GA".
What should I Do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

╰つ倒转 2024-08-05 06:02:35

某些汇编器默认输出 16 位指令。 使用 nasm 您必须使用 bits 指令来更改它,因为示例:

bits 32
xor eax, eax

如果上面示例中的 bits 指令被省略,那么输出将为“xor ax, ax”(机器代码)。

Some assemblers output 16 bit instructions by default. With nasm you'd have to use the bits directive to change that, for example:

bits 32
xor eax, eax

If the bits directive in the above example would have been omitted, then the output would have been "xor ax, ax" (in machine code).

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