Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

An assembly program given in Figure 1 below. include Irvine32.inc .data intArray DWORD 200, 300, 4000, 600, 700, 800 .code main proc mov ESI, OFFSET

An assembly program given in Figure 1 below.

include Irvine32.inc

.data

intArray DWORD 200, 300, 4000, 600, 700, 800

.code

main proc

mov ESI, OFFSET intArray

mov ECX, LENGTHOF intArray

mov EBX, 0

again: add EBX,[ESI]

add ESI, TYPE intArray

loop again

exit

main endp

end main

Figure 1

Debug and execute the program.

  1. Attached the output from the visual studio [1 marks]
  2. What is the initial value of the register ECX? [2 mark]
  3. Refer to you attached output screen, identify where the address or offset of the intArray were located, show the addresses (in hexadecimal) associated with related numbers in intArray as shown in Table 1 below: [3 marks]

Table 1

Number in intArray

Address

300

4000

700

  1. What is the value added to register ESI for the instruction: [1 mark]

add esi, TYPE intArray

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

Readings In Database Systems

Authors: Michael Stonebraker

2nd Edition

0934613656, 9780934613651

More Books

Students also viewed these Databases questions