mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-19 11:51:17 +03:00
5.0 KiB
5.0 KiB
1 | # MOV instruction tests |
---|---|
2 | # Format: RawBytes;Instructions |
3 | RawBytes;Instructions |
4 | # MOV r8, imm8 (opcodes B0-B7) |
5 | # MOV r32, imm32 (opcodes B8-BF) |
6 | # MOV r/m8, r8 (opcode 88) |
7 | # MOV r/m32, r32 (opcode 89) |
8 | # MOV r8, r/m8 (opcode 8A) |
9 | # MOV r32, r/m32 (opcode 8B) |
10 | # MOV r/m8, imm8 (opcode C6 /0) |
11 | # MOV r/m32, imm32 (opcode C7 /0) |
12 | # MOV with segment override prefixes |