0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-05-19 03:41:18 +03:00

32 lines
869 B
CSV
Raw Normal View History

# NOP instruction tests
# Format: RawBytes;Instructions
RawBytes;Instructions
# Basic NOP instruction (1-byte)
2025-04-15 22:20:46 +03:00
90;[{ "Type": "Nop", "Operands": [] }]
# Multi-byte NOP instructions (used for alignment)
2025-04-13 18:22:44 +03:00
# 2-byte NOP (xchg AX, AX)
2025-04-15 22:20:46 +03:00
6690;[{ "Type": "Nop", "Operands": [] }]
# 3-byte NOP (XCHG EAX, EAX)
2025-04-15 22:20:46 +03:00
0F1F00;[{ "Type": "Nop", "Operands": ["dword ptr [eax]"] }]
# 4-byte NOP
2025-04-15 22:20:46 +03:00
0F1F4000;[{ "Type": "Nop", "Operands": ["dword ptr [eax]"] }]
# 5-byte NOP
2025-04-15 22:20:46 +03:00
0F1F440000;[{ "Type": "Nop", "Operands": ["dword ptr [eax+eax*1]"] }]
# 6-byte NOP
2025-04-15 22:20:46 +03:00
660F1F440000;[{ "Type": "Nop", "Operands": ["word ptr [eax+eax*1]"] }]
# 7-byte NOP
2025-04-15 22:20:46 +03:00
0F1F8000000000;[{ "Type": "Nop", "Operands": ["dword ptr [eax]"] }]
# 8-byte NOP
2025-04-15 22:20:46 +03:00
0F1F840000000000;[{ "Type": "Nop", "Operands": ["dword ptr [eax+eax*1]"] }]
# 9-byte NOP
2025-04-15 22:20:46 +03:00
660F1F840000000000;[{ "Type": "Nop", "Operands": ["word ptr [eax+eax*1]"] }]