I disassembled an .exe file and got this as its first line.
push ebp
- What does it mean?
- Why
ebp? - Does it have anything to do with
popcommand? even though I don’t see it in the disassembly!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
push ebpjust means pushing whatever is in registerebponto the stack.ebpstores the stack pointer by convention.This is generally used to establish a stack frame, followed by