vista 装配中的图形适配器问题
当我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
某些汇编器默认输出 16 位指令。 使用 nasm 您必须使用 bits 指令来更改它,因为示例:
如果上面示例中的 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:
If the bits directive in the above example would have been omitted, then the output would have been "xor ax, ax" (in machine code).