Note that this program should contains assembly language codewritten in NASM only.You need to(draw line in graphics mode) such that it draws Greencolor lines on screen boundary as shown in the diagrambelow:):Assembly Language program code fulfilling the above mentionedrequirementsi m sending you the code that you need to reurgest/ modifyonly.; draw line in graphicsmode[org 0x0100]mov ax, 0x000D ; set 320x200graphics modeint 0x10 ; bios videoservicesmov ax, 0x0C07 ; put pixel in whitecolorxor bx, bx ; page number0mov cx, 200 ; x position200mov dx, 200 ; y position200l1: int 0x10 ; bios videoservicesdec dx ; decrease ypositionloop l1 ; decrease x position andrepeatmov ah, 0 ; service 0 – getkeystrokeint 0x16 ; bios keyboardservicesmov ax, 0x0003 ; 80x25 textmodeint 0x10 ; bios videoservicesmov ax, 0x