I need help to solve this question in the assembly language x86 coding form.
Now that you have seen the video, you can use what you have seen to create the following procedures:
sumThree - you should pass three DWORD values on the stack and return the sum of the three values in the eax register.
In main, create some code to test your functionality. You should enter three DWORD values, pass them to the sumThree procedure through the stack, and output the sum, which should be in the eax register, to the screen when the procedure returns.