mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-19 03:41:18 +03:00
1.8 KiB
1.8 KiB
1 | # Group 3 instruction tests |
---|---|
2 | # Format: RawBytes;Instructions |
3 | RawBytes;Instructions |
4 | # Group 3 instructions (opcode F6-F7 /0-/7) |
5 | # TEST, NOT, NEG, MUL, IMUL, DIV, IDIV |
6 | # Group 3 with 8-bit register/memory (opcode F6) |
7 | # TEST r/m8, imm8 (opcode F6 /0) |
8 | # NOT r/m8 (opcode F6 /2) |
9 | # NEG r/m8 (opcode F6 /3) |
10 | # MUL r/m8 (opcode F6 /4) |
11 | # IMUL r/m8 (opcode F6 /5) |
12 | # DIV r/m8 (opcode F6 /6) |
13 | # IDIV r/m8 (opcode F6 /7) |
14 | # Group 3 with 32-bit register/memory (opcode F7) |
15 | # TEST r/m32, imm32 (opcode F7 /0) |
16 | # NOT r/m32 (opcode F7 /2) |
17 | # NEG r/m32 (opcode F7 /3) |
18 | # MUL r/m32 (opcode F7 /4) |
19 | # IMUL r/m32 (opcode F7 /5) |
20 | # DIV r/m32 (opcode F7 /6) |
21 | # IDIV r/m32 (opcode F7 /7) |
22 | # Group 3 with memory operands |