home *** CD-ROM | disk | FTP | other *** search
/ PC Underground / UNDERGROUND.ISO / sound / sfxpro / scrnio.asm < prev    next >
Encoding:
Assembly Source File  |  1995-08-02  |  331 b   |  31 lines

  1. .386p
  2.         
  3. _TEXT  SEGMENT byte public 'CODE'
  4.        ASSUME CS:_TEXT
  5.  
  6. ;public gotoxy_
  7. public cls_
  8.  
  9. gotoxy_ proc far
  10.   ARG  x : byte
  11.   ARG  y : byte
  12.  
  13.   mov ah,2
  14.   mov bh,0
  15.   mov dh,y
  16.   mov dl,x
  17.   int 10h
  18.   ret
  19. gotoxy_ endp
  20.  
  21. cls_ proc far
  22.   mov ax,3
  23.   int 10h
  24.   ret
  25. cls_ endp
  26.  
  27. _TEXT  ENDS
  28.  
  29. END     
  30.  
  31.