Question: 1. Write an assembly program to compute the following expression z = -x + 6 - y + 17 - where x, y and z

1. Write an assembly program to compute the following expression

z = -x + 6 - y + 17

- where x, y and z are 16-bit integer variables.

- x is in the range of (1 = < x < 5), - y = 10,

- z is a list. (you must use DUP when identifying and initializing z list)

- Use NEG instruction, loop, esi register when you add a constant to a memory address, and TYPE.

- Values of the z list after running the program should be: 12,11,10,9.

2. (3 points) Implement the following expression in assembly language:

for (i = 6; i > 0; i--)

{

for (j = 3; j > 0; j--)

{

y = i + j;

}

}

- Assume i, j and y are 32-bit registers

Please show me the work in visual studio and add comment to see what each line does. Thank you

I believe we have to use x86, but to make sure, how do i know which program I'm using?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!