Question: Given the following procedures, with code segment instruction addresses given on each line in 4 byte hex... 00000000 0000001A 0000001F main PROC , ; Execution

Given the following procedures, with code segment instruction addresses given on each line in 4 byte hex... 00000000 0000001A 0000001F main PROC , ; Execution Point A CALL someProci CALL WriteDec ; ... exit main ENDP 00000030 00000031 00000031 00000031 00000035 0000003A someProc1 PROC PUSH EAX CALL someProc2 POP EAX 0000016F 0000016F RET someProc1 ENDP 0000016F 0000016F someProc2 PROC PUSH EBX 00000205 POP EBX ; Execution Point B RET someProc2 ENDP 00000209 0000020A Assume ESP = 000004DAh, EAX = 00000040h, EBX = 00000120h at Execution Point A, there are no stack operations other than those visible, and Eax and EBX are only changed by the visible instructions. At Execution Point B: What is the current value of the stack pointer (in 4 byte hex)? What is the value at the top of the stack (in 4 byte hex)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
