Logo 
Search:

Assembly Language Articles

Submit Article
Home » Articles » Assembly Language » Homework HelpRSS Feeds

Program to Print a Color Border on the Screen

Posted By: John Evans     Category: Assembly Language     Views: 4630

Write a Program to Print a Color Border on the Screen.

Code for Program to Print a Color Border on the Screen in Assembly Language

stack segment
stack ends

data segment
data ends

code segment

   mov ah,0bh 

   mov bx,01    
   int 10h
   mov ah,4ch
   int 21h
code ends

END
  
Share: 


Didn't find what you were looking for? Find more on Program to Print a Color Border on the Screen Or get search suggestion and latest updates.

John Evans
John Evans author of Program to Print a Color Border on the Screen is from London, United Kingdom.
 
View All Articles

 

Other Interesting Articles in Assembly Language:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!