Read the Assembly program carefully, understand its working/functionality and answer the below given question. MOV DX, 0090 MOV DS, DX MOV BX, 0010 MOV SI, 0020 MOV AL,00 MOV DL, [SI] MOV CX, 000A P1:...


Read the Assembly program carefully, understand its working/functionality and answer the below given question.




        MOV DX, 0090
        MOV DS, DX
        MOV BX, 0010
        MOV SI, 0020
        MOV AL,00
        MOV DL, [SI]
        MOV CX, 000A
P1:   CMP DL, [BX]
        JNZ P2                  ;JNZ is Jump if ZF=0 in the result of CMP instruction
        INC AL
P2:   INC BX
        INC SI
        DEC CX
        MOV DL, [SI]
        CMP CX, 0
        JA P1
        MOV [0030], AL
        INT E
0090:0010 DB B8, 6F, 23, D0, 99, C5, 89, 9D, 1A, 81
0090:0020 DB 37, 6F, 32, B6, 11, C5, 98, 2B, 7A, C0




a. What will be displayed on the LCD after the execution of program?



Jun 02, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here