mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-19 20:01:17 +03:00
2.5 KiB
2.5 KiB
1 | # AND instruction tests |
---|---|
2 | # Format: RawBytes;Instructions |
3 | RawBytes;Instructions |
4 | # AND r/m8, imm8 (opcode 80 /4) |
5 | # AND AL, imm8 (opcode 24) |
6 | # AND r/m32, imm32 (opcode 81 /4) |
7 | # AND EAX, imm32 (opcode 25) |
8 | # AND r/m32, imm8 (opcode 83 /4) |
9 | # AND r/m8, r8 (opcode 20) |
10 | # AND r8, r/m8 (opcode 22) |
11 | # AND r/m32, r32 (opcode 21) |
12 | # AND r32, r/m32 (opcode 23) |
13 | # AND with memory operands |