mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-05-19 20:01:17 +03:00
59 lines
2.5 KiB
CSV
59 lines
2.5 KiB
CSV
# ADC instruction tests
|
|
# Format: RawBytes;Instructions
|
|
RawBytes;Instructions
|
|
|
|
# ADC r/m8, imm8 (opcode 80 /2)
|
|
80D042;[{ "Type": "Adc", "Operands": ["al", "0x42"] }]
|
|
80D342;[{ "Type": "Adc", "Operands": ["bl", "0x42"] }]
|
|
80D142;[{ "Type": "Adc", "Operands": ["cl", "0x42"] }]
|
|
80D242;[{ "Type": "Adc", "Operands": ["dl", "0x42"] }]
|
|
|
|
# ADC AL, imm8 (opcode 14)
|
|
1442;[{ "Type": "Adc", "Operands": ["al", "0x42"] }]
|
|
|
|
# ADC r/m32, imm32 (opcode 81 /2)
|
|
81D078563412;[{ "Type": "Adc", "Operands": ["eax", "0x12345678"] }]
|
|
81D378563412;[{ "Type": "Adc", "Operands": ["ebx", "0x12345678"] }]
|
|
81D178563412;[{ "Type": "Adc", "Operands": ["ecx", "0x12345678"] }]
|
|
81D278563412;[{ "Type": "Adc", "Operands": ["edx", "0x12345678"] }]
|
|
|
|
# ADC EAX, imm32 (opcode 15)
|
|
1578563412;[{ "Type": "Adc", "Operands": ["eax", "0x12345678"] }]
|
|
|
|
# ADC r/m32, imm8 (opcode 83 /2)
|
|
83D042;[{ "Type": "Adc", "Operands": ["eax", "0x42"] }]
|
|
83D342;[{ "Type": "Adc", "Operands": ["ebx", "0x42"] }]
|
|
83D142;[{ "Type": "Adc", "Operands": ["ecx", "0x42"] }]
|
|
83D242;[{ "Type": "Adc", "Operands": ["edx", "0x42"] }]
|
|
|
|
# ADC r/m8, r8 (opcode 10)
|
|
10C3;[{ "Type": "Adc", "Operands": ["bl", "al"] }]
|
|
10D9;[{ "Type": "Adc", "Operands": ["cl", "bl"] }]
|
|
10E2;[{ "Type": "Adc", "Operands": ["dl", "ah"] }]
|
|
|
|
# ADC r8, r/m8 (opcode 12)
|
|
12C3;[{ "Type": "Adc", "Operands": ["al", "bl"] }]
|
|
12D9;[{ "Type": "Adc", "Operands": ["bl", "cl"] }]
|
|
12E2;[{ "Type": "Adc", "Operands": ["ah", "dl"] }]
|
|
|
|
# ADC r/m32, r32 (opcode 11)
|
|
11D8;[{ "Type": "Adc", "Operands": ["eax", "ebx"] }]
|
|
11CA;[{ "Type": "Adc", "Operands": ["edx", "ecx"] }]
|
|
11E5;[{ "Type": "Adc", "Operands": ["ebp", "esp"] }]
|
|
114B10;[{ "Type": "Adc", "Operands": ["dword ptr [ebx+0x10]", "ecx"] }]
|
|
|
|
# ADC r32, r/m32 (opcode 13)
|
|
13D8;[{ "Type": "Adc", "Operands": ["ebx", "eax"] }]
|
|
13CA;[{ "Type": "Adc", "Operands": ["ecx", "edx"] }]
|
|
13E5;[{ "Type": "Adc", "Operands": ["esp", "ebp"] }]
|
|
134B10;[{ "Type": "Adc", "Operands": ["ecx", "dword ptr [ebx+0x10]"] }]
|
|
|
|
# ADC with memory operands
|
|
8014251000000042;[{ "Type": "Adc", "Operands": ["byte ptr [0x10]", "0x42"] }]
|
|
8114251000000078563412;[{ "Type": "Adc", "Operands": ["dword ptr [0x10]", "0x12345678"] }]
|
|
8314251000000042;[{ "Type": "Adc", "Operands": ["dword ptr [0x10]", "0x42"] }]
|
|
1004251000000000;[{ "Type": "Adc", "Operands": ["byte ptr [0x10]", "al"] }]
|
|
1204251000000000;[{ "Type": "Adc", "Operands": ["al", "byte ptr [0x10]"] }]
|
|
1104251000000000;[{ "Type": "Adc", "Operands": ["dword ptr [0x10]", "eax"] }]
|
|
1304251000000000;[{ "Type": "Adc", "Operands": ["eax", "dword ptr [0x10]"] }]
|