Write a Program to Print a Color Border on the Screen.
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