home *** CD-ROM | disk | FTP | other *** search
/ ftp.update.uu.se / ftp.update.uu.se.2014.03.zip / ftp.update.uu.se / pub / rainbow / msdos / misc / interlac.lzh / INTERLAC.ASM next >
Assembly Source File  |  1986-02-02  |  256b  |  19 lines

  1.     title interlac
  2.  
  3. ;Turn interlace mode on
  4.  
  5. code    segment
  6.     assume cs:code, ds:code
  7.  
  8.     org 100H
  9.  
  10. start:    mov al,20H
  11.     out 4,al
  12.     mov al,0
  13.     out 4,al
  14.     int 20H
  15.  
  16. code    ends
  17.  
  18.     end start
  19.