A partially completed assembly program is given below. The program reads a string from BLK1 of memory and convert it to
Posted: Thu May 26, 2022 10:33 am
A partially completed assembly program is given below. The program reads a string from BLK1 of memory and convert it to lowercase letters. The lowercase string is to be stored in BLK2. Complete the code segment of the program. The ASCII code chart on the next page is needed for this question. The code for a character is formed by concatenation of the row number and column number. For example, the ASCII code for uppercase "F" is 46H, ASCII code for lowercase "f" is 66H. NOTE: Do not modify the existing code. data segment BLK1 db 'MOCK EXAM' BLK2 db 10 dup(?) data ends code segment start: mov AX, data mov DS, AX mov ES, AX mov SI, offset BLK1 mov DI, offset BLK2 cld ; WRITE YOUR CODE HERE mov ax, 4c00h int 21h code ends end start