In assembly language programming, what (if anything) prevents a stack from growing until it clobbers data or instructions?
In assembly language programming, what (if anything) prevents a stack from growing until it
Share
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.
YOU! There is absolutely no hand holding when coding in Assembly. You must make sure all values fit into their buffers, all pointer indexes are within bounds. You reserve space on the stack, make sure whatever fits into that buffer. YOU are responsible for every aspect of programming while using Assembly.