1 Write A Line By Line Explanation To This Program 2 What Does The Program Do Explain 3 What Is Being Displayed 1 (73.46 KiB) Viewed 37 times
1 Write A Line By Line Explanation To This Program 2 What Does The Program Do Explain 3 What Is Being Displayed 2 (73.46 KiB) Viewed 37 times
1 Write A Line By Line Explanation To This Program 2 What Does The Program Do Explain 3 What Is Being Displayed 3 (73.46 KiB) Viewed 37 times
1. Write a line by line explanation to this program. 2. What does the program do? Explain. 3. What is being displayed? .model small .386 stack 100h data .code main proc MOV AH, 1 INT 21H MOV CL, AL MOV DH,9 RPT: DEC DH JZ SHORT FIN SHL CL, 1 JC SHORT DISP1 DISPO: JMP RPT DISP1: inc bh JMP RPT FIN: mov dl, bh ADD DL, 30H mov ah, 6 INT 21H mov ax, 4cooh int 21h main endp end main
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!