1 / 1

.model small .stack 100h .data gotoxy macro x,y mov ah,2 mov dh,10 mov dl,20

.model small .stack 100h .data gotoxy macro x,y mov ah,2 mov dh,10 mov dl,20 int 10h endm window macro bk,x1,y1,x2,y2 mov ah,7 mov bh,bk mov ch,y1 mov cl,x1 mov dh,y2 mov dl,x2 int 10h endm .code. main proc call cls gotoxy mov ah,2

darva
Télécharger la présentation

.model small .stack 100h .data gotoxy macro x,y mov ah,2 mov dh,10 mov dl,20

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. .model small .stack 100h .data gotoxy macro x,y mov ah,2 mov dh,10 mov dl,20 int 10h endm window macro bk,x1,y1,x2,y2 mov ah,7 movbh,bk mov ch,y1 mov cl,x1 mov dh,y2 mov dl,x2 int 10h endm .code main proc call cls gotoxy mov ah,2 movdl,'a' int 21h window 31h,5,3,30,20 mov ah,2 movdl,'a' int 21h call atreturntodos main endp clsproc mov ah,0 mov al,3 int 10h ret clsendp atreturntodosproc mov ah,4ch int 21h ret atreturntodosendp end main Design By Sir Masood

More Related