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