mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-11-05 07:38:56 +03:00
2.6 KiB
2.6 KiB
| 1 | # ADD instruction tests |
|---|---|
| 2 | # Format: RawBytes;Instructions |
| 3 | RawBytes;Instructions |
| 4 | # ADD r/m8, imm8 (opcode 80 /0) |
| 5 | # ADD AL, imm8 (opcode 04) |
| 6 | # ADD r/m32, imm32 (opcode 81 /0) |
| 7 | # ADD EAX, imm32 (opcode 05) |
| 8 | # ADD r/m32, imm8 (opcode 83 /0) with sign extension |
| 9 | # ADD r/m8, r8 (opcode 00) |
| 10 | # ADD r8, r/m8 (opcode 02) |
| 11 | # ADD r/m32, r32 (opcode 01) |
| 12 | # ADD r32, r/m32 (opcode 03) |
| 13 | # ADD with memory operands |