Question: The data segment of a assembly program (MASM) is as follows: .data aVal DWORD 12 bVal DWORD 13 and eax register contains 4, ebx register
The data segment of a assembly program (MASM) is as follows: .data aVal DWORD 12 bVal DWORD 13 and eax register contains 4, ebx register contains 5 , and ecx register contains 3. Write assembly code to evaluate the following expression. aVal=(bValecx)+(eaxebx) You can use MOV, ADD, SUB instructions. You are not allowed to make any reduction in the above expression. You need to implement it the way it is provided. Code must be in assembly language that can be processed using MASM
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
