mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-19 03:41:18 +03:00
4.0 KiB
4.0 KiB
1 | # CALL instruction tests |
---|---|
2 | # Format: RawBytes;Instructions |
3 | RawBytes;Instructions |
4 | # CALL rel32 (opcode E8) |
5 | # CALL r/m32 (opcode FF /2) with register operands |
6 | # CALL m32 (opcode FF /2) with memory operands |
7 | # TODO: these are not recognized by ghidra, but these seem to be valid x86 instructions. |
8 | # CALL m32 (opcode FF /2) with SIB addressing |
9 | # not recognized neither by ghidra nor online disasms |
10 | # not recognized neither by ghidra nor online disasms |
11 | # CALL m32 (opcode FF /2) with displacement |
12 | # CALL m32 (opcode FF /2) with SIB and displacement |
13 | # CALL m16:32 (opcode FF /3) - Far call with memory operand |
14 | # CALL m32 (opcode FF /2) with direct memory operand |
15 | # CALL m32 (opcode FF /2) with segment override prefixes |