Using the contents of memory listed below, trace through the follow
program and determine the results of the following operations. All
numbers are in hex. Unlike HW1, the answers to this problem
do not spell out words (they are just arbitrary hex digits).
Memory Dump (DEBUG format)
1461:0000 AB 90 EF CD 34 12 78 56-03 01 04 00 02 00 01 00
Find of value of AX after executing the following code (3 pts)
MOV AX,1461h
MOV DS,AX
MOV AL,05
MOV AH,07
Find of value of AX after executing the following code (3 pts)
MOV AL,[0005h]
MOV AH,[0007h]
Find of value of AX after executing the following code (3 pts)
MOV AX,[0004h]
Find of value of AX after executing the following code (3 pts)
MOV BX,[000Eh]
MOV DI,[000Eh]
MOV AX,[BX+DI]
Find of value of AX after executing the following code (3 pts)