Write an Assembly Language program which will print your name at the centre of the monitor. Description: Assume that your name is blessing, and needs to be displayed at the centre of the monitor as follows: at the first iteration of the loop: “B” will be displayed., at the second iteration of the loop: “B” and “L” will be displayed. at the third iteration of the loop: “B”, “L”, and “E” will be displayed. at the fourth iteration of the loop: “B”, “L”, “E” and “E” will be displayed. AND so on you must integrate this with your code ; clearing the screen MOV AX,0600H ;scroll the entire page MOV BH,07 ;normal attribute MOV CX,0000 ;row and column of the top left MOV DX,184FH ;row and column of the bottom right INT 10H ;invoke interrupt 10H ;setting the cursor to the center of the screen MOV AH,02 ;set cursor option MOV BH,00 ;page 0 MOV DL,39 ;center column position MOV DH,12 ;center row position INT 10H ;invoke interrupt 10H

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section5.5: A Closer Look: Loop Programming Techniques
Problem 14E
icon
Related questions
Topic Video
Question

Write an Assembly Language program which will print your name at the centre of the monitor.
Description: Assume that your name is blessing, and needs to be displayed at the centre of the monitor as follows:
at the first iteration of the loop: “B” will be displayed.,
at the second iteration of the loop: “B” and “L” will be displayed.
at the third iteration of the loop: “B”, “L”, and “E” will be displayed.
at the fourth iteration of the loop: “B”, “L”, “E” and “E” will be displayed. AND so on
you must integrate this with your code


; clearing the screen
MOV AX,0600H ;scroll the entire page
MOV BH,07 ;normal attribute
MOV CX,0000 ;row and column of the top left
MOV DX,184FH ;row and column of the bottom right
INT 10H ;invoke interrupt 10H

;setting the cursor to the center of the screen
MOV AH,02 ;set cursor option
MOV BH,00 ;page 0
MOV DL,39 ;center column position
MOV DH,12 ;center row position
INT 10H ;invoke interrupt 10H

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT