00+ 是什么意思? Intel x86 汇编手册中的意思是什么?

发布于 2024-09-09 02:21:44 字数 84 浏览 2 评论 0原文

在英特尔文档手册中,我在多个地方看到对 00+ 的引用,但没有定义。这个 00+ 指令/操作码是什么?

In the Intel documentation manuals, I see references to 00+ multiple places, but no definition. What is this 00+ instruction/opcode?

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

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

发布评论

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

评论(2

吹梦到西洲 2024-09-16 02:21:44

提到指令/操作码,意味着它被 8086 或更高版本的处理器支持。

指令的介绍性处理器代码:

* 00: 8086
* 01: 80186
* 02: 80286
* 03: 80386
* 04: 80486
* P1 (05): Pentium (1)
* PX (06): Pentium with MMX
* PP (07): Pentium Pro
* P2 (08): Pentium II
* P3 (09): Pentium III
* P4 (10): Pentium 4
* C1 (11): Core (1)
* C2 (12): Core 2
* C7 (13): Core i7
* IT (99): Itanium (only geek editions)
  1. 如果处理器标记是一个范围(例如,03-04),则表示该处理器
    以后不支持指令
    处理器。
  2. XX+ 表示该指令在任何更高版本的处理器中都受支持,并且在 64 位模式下也受支持(如果下一行不支持)
    明确表示否则。

Referred to an instruction/opcode, it means it's supported by 8086 or later processors.

Instruction's introductory processor code:

* 00: 8086
* 01: 80186
* 02: 80286
* 03: 80386
* 04: 80486
* P1 (05): Pentium (1)
* PX (06): Pentium with MMX
* PP (07): Pentium Pro
* P2 (08): Pentium II
* P3 (09): Pentium III
* P4 (10): Pentium 4
* C1 (11): Core (1)
* C2 (12): Core 2
* C7 (13): Core i7
* IT (99): Itanium (only geek editions)
  1. If the processor marking is a range (e.g., 03-04), it means that the
    instruction is unsupported in later
    processors.
  2. XX+ means the instruction is supported in any later processors and also in 64-bit mode, if the next row doesn't
    explicitly say otherwise.
醉殇 2024-09-16 02:21:44

根据 非常有用的 x86 OP 代码列表,它是一条 ADD 指令(单字节变体)

According to a very useful x86 OP code listing its an ADD instruction(the one byte variant)

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