Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Solve the following question of all parts showing steps clearly... Thumbs up will be given Subject: Assembly language DEBUG Use the Fill command of the
Solve the following question of all parts showing steps clearly... Thumbs up will be given
Subject: Assembly language DEBUG
Use the Fill command of the DEBUG to fill a memory of size 128 bytes at DS:62001 where DS is 0400H. Use the following data. The data is: 2 A B 7 6 C 3. FF 3C 8 AB 5 D 66 12 E4 Then, write an assembly program that finds the following, where DS is 8490H: 1. Copies the first 64 bytes of the data above to DS: 0800H. You must use MOVSB in your solution of this part. ; 2. Calculate the sum of all values in closed range [1, 9] of the data you have filled above. The sum should be stored in DX You must use the instruction LODSB to solve this part. ; Test your program with the data given above. ; You must submit: ; 1. The assembly file ; 2. The COM file, and . 3. Screenshots of the program execution as well as the data that you have filled (word file). Use the Fill command of the DEBUG to fill a memory of size 128 bytes at DS:62001 where DS is 0400H. Use the following data. The data is: 2 A B 7 6 C 3. FF 3C 8 AB 5 D 66 12 E4 Then, write an assembly program that finds the following, where DS is 8490H: 1. Copies the first 64 bytes of the data above to DS: 0800H. You must use MOVSB in your solution of this part. ; 2. Calculate the sum of all values in closed range [1, 9] of the data you have filled above. The sum should be stored in DX You must use the instruction LODSB to solve this part. ; Test your program with the data given above. ; You must submit: ; 1. The assembly file ; 2. The COM file, and . 3. Screenshots of the program execution as well as the data that you have filled (word file)Step 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