00+ 是什么意思? Intel x86 汇编手册中的意思是什么?
在英特尔文档手册中,我在多个地方看到对 00+
的引用,但没有定义。这个 00+
指令/操作码是什么?
In the Intel documentation manuals, I see references to 00+
multiple places, but no definition. What is this 00+
instruction/opcode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
提到指令/操作码,意味着它被 8086 或更高版本的处理器支持。
指令的介绍性处理器代码:
Referred to an instruction/opcode, it means it's supported by 8086 or later processors.
Instruction's introductory processor code:
根据 非常有用的 x86 OP 代码列表,它是一条 ADD 指令(单字节变体)
According to a very useful x86 OP code listing its an ADD instruction(the one byte variant)