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

25 lines
838 B
CSV
Raw Normal View History

2025-04-15 22:20:46 +03:00
# Stack manipulation instruction tests
# Format: RawBytes;Instructions
RawBytes;Instructions
# PUSHA/PUSHAD - Push All General-Purpose Registers
60;[{ "Type": "Pushad", "Operands": [] }]
# POPA/POPAD - Pop All General-Purpose Registers
61;[{ "Type": "Popad", "Operands": [] }]
# PUSHF/PUSHFD - Push EFLAGS Register onto the Stack
9C;[{ "Type": "Pushfd", "Operands": [] }]
# POPF/POPFD - Pop Stack into EFLAGS Register
9D;[{ "Type": "Popfd", "Operands": [] }]
# ENTER - Make Stack Frame for Procedure Parameters
2025-04-18 14:06:43 +03:00
C8000000;[{ "Type": "Enter", "Operands": ["0x00", "0x00"] }]
C8100000;[{ "Type": "Enter", "Operands": ["0x10", "0x00"] }]
C8000001;[{ "Type": "Enter", "Operands": ["0x00", "0x01"] }]
C8100001;[{ "Type": "Enter", "Operands": ["0x10", "0x01"] }]
2025-04-15 22:20:46 +03:00
# LEAVE - High Level Procedure Exit
C9;[{ "Type": "Leave", "Operands": [] }]