mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-19 03:41:18 +03:00
20 lines
652 B
CSV
20 lines
652 B
CSV
# PUSH immediate instruction tests
|
|
# Format: RawBytes;Instructions
|
|
RawBytes;Instructions
|
|
|
|
# PUSH imm32 (32-bit immediate)
|
|
6878563412;[{ "Type": "Push", "Operands": ["0x12345678"] }]
|
|
|
|
# PUSH imm8 (8-bit immediate)
|
|
6A10;[{ "Type": "Push", "Operands": ["0x10"] }]
|
|
6A00;[{ "Type": "Push", "Operands": ["0x00"] }]
|
|
6AFF;[{ "Type": "Push", "Operands": ["0xFF"] }]
|
|
|
|
# PUSH imm32 with various values
|
|
6800000000;[{ "Type": "Push", "Operands": ["0x00"] }]
|
|
68FFFFFFFF;[{ "Type": "Push", "Operands": ["0xFFFFFFFF"] }]
|
|
6801000000;[{ "Type": "Push", "Operands": ["0x01"] }]
|
|
|
|
# PUSH imm16 with operand size prefix
|
|
66687856;[{ "Type": "Push", "Operands": ["0x5678"] }]
|