mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-06-20 08:18:36 +03:00
add tons of tests
This commit is contained in:
@ -3,29 +3,29 @@
|
||||
RawBytes;Instructions
|
||||
|
||||
# Basic NOP instruction (1-byte)
|
||||
90;[{ "Mnemonic": "nop", "Operands": "" }]
|
||||
90;[{ "Type": "Nop", "Operands": [] }]
|
||||
|
||||
# Multi-byte NOP instructions (used for alignment)
|
||||
# 2-byte NOP (xchg AX, AX)
|
||||
6690;[{ "Mnemonic": "nop", "Operands": "" }]
|
||||
6690;[{ "Type": "Nop", "Operands": [] }]
|
||||
|
||||
# 3-byte NOP (XCHG EAX, EAX)
|
||||
0F1F00;[{ "Mnemonic": "nop", "Operands": "dword ptr [eax]" }]
|
||||
0F1F00;[{ "Type": "Nop", "Operands": ["dword ptr [eax]"] }]
|
||||
|
||||
# 4-byte NOP
|
||||
0F1F4000;[{ "Mnemonic": "nop", "Operands": "dword ptr [eax]" }]
|
||||
0F1F4000;[{ "Type": "Nop", "Operands": ["dword ptr [eax]"] }]
|
||||
|
||||
# 5-byte NOP
|
||||
0F1F440000;[{ "Mnemonic": "nop", "Operands": "dword ptr [eax+eax*1]" }]
|
||||
0F1F440000;[{ "Type": "Nop", "Operands": ["dword ptr [eax+eax*1]"] }]
|
||||
|
||||
# 6-byte NOP
|
||||
660F1F440000;[{ "Mnemonic": "nop", "Operands": "word ptr [eax+eax*1]" }]
|
||||
660F1F440000;[{ "Type": "Nop", "Operands": ["word ptr [eax+eax*1]"] }]
|
||||
|
||||
# 7-byte NOP
|
||||
0F1F8000000000;[{ "Mnemonic": "nop", "Operands": "dword ptr [eax]" }]
|
||||
0F1F8000000000;[{ "Type": "Nop", "Operands": ["dword ptr [eax]"] }]
|
||||
|
||||
# 8-byte NOP
|
||||
0F1F840000000000;[{ "Mnemonic": "nop", "Operands": "dword ptr [eax+eax*1]" }]
|
||||
0F1F840000000000;[{ "Type": "Nop", "Operands": ["dword ptr [eax+eax*1]"] }]
|
||||
|
||||
# 9-byte NOP
|
||||
660F1F840000000000;[{ "Mnemonic": "nop", "Operands": "word ptr [eax+eax*1]" }]
|
||||
660F1F840000000000;[{ "Type": "Nop", "Operands": ["word ptr [eax+eax*1]"] }]
|
||||
|
Can't render this file because it contains an unexpected character in line 6 and column 7.
|
Reference in New Issue
Block a user