Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I need the answer to the question marks in the below code that fits with the instructions. Part 3: Modify the program in part 1
I need the answer to the question marks in the below code that fits with the instructions.
Part 3: Modify the program in part 1 given if the arrays are changed to: SBYTE 4, 16, 100, -116, -68, -104 SDWORD lengthof X DUP (0) Y MODEL SMALL .386 .STACK .DATA ; define variables X SBYTE 4, 16, 100, -116, -68, -104 Y SDWORD lengthof X DUP (0) Address of x is 05DA: 0000 Address of Y is 05DA: 0006 MAIN .CODE PROC FAR .STARTUP MOV ESI, 0 MOV cx, lengthof X ??? ?, X[ESI) |??? Y[?], ? INC ESI LOOP L1 ; ESI - 0 ; ECX = 6 11: ;AL 4,16,100,-116, -68,-104 ;ESI= 1,2,3,4,5,6 ;ECX= 5,4,3,2,1,0 . .EXITI MAIN ENDP ENDStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started