Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Driven Web Sites

Authors: Joline Morrison, Mike Morrison

2nd Edition

? 061906448X, 978-0619064488

More Books

Students also viewed these Databases questions

Question

a. What is the purpose of the team?

Answered: 1 week ago

Question

What is Change Control and how does it operate?

Answered: 1 week ago

Question

How do Data Requirements relate to Functional Requirements?

Answered: 1 week ago