question 3 a. A byte type array named DONKEY with 3 items 45, 45h and 4Ah. DONKEY DB 45 45H 4AH b. A word type array named FIONA with 5 items 45, 45h, 444h, 4A4Bh and 44Ah. FIONA DW 45,45h,444h,4A4BH,44Ah. c- A double-word type array named SHREK with 5 items initialized to 0 SHREK DD 5 DUP(0) Question : 4. Referring to the array definitions in Question 3, state the following values in the register a. MOV AL,DONKEY ;AL= b. MOV AL, DONKEY+2 ;AL= c. MOV AX, FIONA ;AX= d. MOV AX, FIONA+2 ;AX= e. MOV AX, FIONA+4 ;AX= f. MOV EAX, SHREK ;EAX= g. MOV AH,FIONA+8 ;AH= h. MOV EAX,0 MOV AX, FIONA+2 MOV SHREK, EAX ;EAX= ;AX= ;SHREK= 5. Referring to the array definitions in Question 3, write the appropriate instruction(s) to achieve the required results. a. ; BL=45h b. ; BX = 004Ah c. ; SHREK+4=00004A4Bh 6. Referring to the array definitions in Question 3, write a program to sum array DONKEY. 7. Referring to the array definitions in Question 3, write a program to sum array FIONA.
question 3
a. A byte type array named DONKEY with 3 items 45, 45h and 4Ah.
DONKEY DB 45 45H 4AH
b. A word type array named FIONA with 5 items 45, 45h, 444h,
4A4Bh and 44Ah.
FIONA DW 45,45h,444h,4A4BH,44Ah.
c- A double-word type array named SHREK with 5 items
initialized to 0
SHREK DD 5 DUP(0)
Question :
4. Referring to the array definitions in Question 3, state the following values in the register
a. | MOV AL,DONKEY | ;AL= |
b. | MOV AL, DONKEY+2 | ;AL= |
c. | MOV AX, FIONA | ;AX= |
d. |
MOV AX, FIONA+2 |
;AX= |
e. | MOV AX, FIONA+4 | ;AX= |
f. | MOV EAX, SHREK | ;EAX= |
g. | MOV AH,FIONA+8 | ;AH= |
h. |
MOV EAX,0 MOV AX, FIONA+2 MOV SHREK, EAX |
;EAX= ;AX= ;SHREK= |
5. Referring to the array definitions in Question 3, write the appropriate instruction(s) to achieve the required results.
a. | ; BL=45h | |
b. | ; BX = 004Ah | |
c. | ; SHREK+4=00004A4Bh |
6. Referring to the array definitions in Question 3, write a program to sum
array DONKEY.
7. Referring to the array definitions in Question 3, write a program to sum
array FIONA.
Trending now
This is a popular solution!
Step by step
Solved in 3 steps