Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Given ESI = 5 and EBX = 1, what memory location is the following instruction addressing? mov al,[ESI+EBX+1] Answer in decimal. 2. What is

1. Given ESI = 5 and EBX = 1, what memory location is the following instruction addressing?

mov al,[ESI+EBX+1]

Answer in decimal.

2. What is the value of ECX in decimal after the following completes executing?

mov ECX, 5000 here: nop loop here

3. What is the value of EDI after the following code has completed running?

mov EDI, 10 mov ECX, 2 rep movsb

Note: you can not run this in Visual C++... figure it out.

4. Given the string called 'letters' in memory which is equal to 'Fancy' in ASCII and the following code:

lea ESI,letters mov al,[ESI+4]

What value is placed in the AL register?

59 hex

79 hex

52 hex

70 hex

Need help answering these 4 questions.

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

Data Mining Concepts And Techniques

Authors: Jiawei Han, Micheline Kamber, Jian Pei

3rd Edition

0123814790, 9780123814791

More Books

Students also viewed these Databases questions

Question

What is a power series?

Answered: 1 week ago