home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / W95SPCOD.ZIP / WRONG / NAMELESS / FRD_MINI.ZIP / MINI3.ASM next >
Assembly Source File  |  1995-11-05  |  876b  |  59 lines

  1. ;; Frederic Charlier chip code 
  2. .286
  3.  
  4. .model tiny
  5.  
  6.  
  7. Code segment 
  8.  
  9.         assume cs:code,ds:code,ss:code
  10.  
  11. mini:
  12.  
  13.         int     16h
  14.         
  15.         mov     cl,al
  16.         xor     cl,30h
  17.         je      touche  
  18. ;        push    cx
  19.         
  20. vga:        
  21.         mov     ax,13h
  22.         int     10h
  23.         
  24.         push    0a000h
  25.         pop     es
  26.  
  27.         
  28.         mov     al,64h   
  29.         xor     di,di
  30. ;        pop     cx
  31.  
  32. corps:
  33.         stosb
  34.         stosb
  35.         stosb
  36.         add     di,637
  37.         stosb
  38.         stosb
  39.         stosb
  40.         sub     di,323
  41.        
  42.         stosw
  43.         stosw
  44.         
  45.         loop    corps
  46.  
  47. touche:        
  48.         int     16h
  49. retour:
  50.         mov     ax,3
  51.         int     10h
  52.         xor     ax,1111h
  53.         ;xor     bx,bx
  54.         int     10h
  55.         ret
  56.  
  57. code ends
  58. end mini
  59.