Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Question#4 Given the following code that allows the user to insert string from keyboard using DOS interrupt: ORG 1200H ARRAY1 DB 10,?, 10 DUP(FFH) MOV
Question\#4 Given the following code that allows the user to insert string from keyboard using DOS interrupt: ORG 1200H ARRAY1 DB 10,?, 10 DUP(FFH) MOV AH, OAH MOV DX, OFFSET ARRAY 1 INT 21H A- What are the contents of the following locations once the buffer created: 1200H:1201H:1207H: B - If the user Inserts the string ASSEMBLY and presses the CR, what will be the contents of the following locations: 1201H:1208H:120AH: C - Use appropriate instructions to change letter M in the inserted string to letter E : D- Given DS =1300H, what's the physical address of the memory location that holds the letter Y
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