home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / W95SPCOD.ZIP / WINNERS / PARANO / ESSAI2.ASM < prev    next >
Assembly Source File  |  1995-11-03  |  451b  |  53 lines

  1. .386
  2. code segment public use16
  3. assume cs:code
  4. org 100h
  5. start:
  6.  
  7. mov al,13h
  8. int 10h
  9.  
  10. int 16h
  11.  
  12. aaa            ; sub al,30h
  13. mov cl,al
  14.  
  15. jcxz stoptout
  16.  
  17. push 0A000h
  18. pop es
  19.  
  20. retour2:
  21.  
  22. mov ax,6464h
  23. add di,ax
  24. mov bl,3
  25.  
  26. ;mov bp,offset dsrd
  27.  
  28.  
  29.  
  30. retour:
  31. stosw
  32. stosb
  33. xor ah,al
  34. add di,317
  35. dec bx
  36. jne retour
  37.  
  38. loop retour2
  39.  
  40. stoptout:
  41.  
  42. cbw
  43. int 16h
  44.  
  45. ;mov ax,0003h
  46.  
  47. ;int 10h
  48. mov ax,1112h
  49. int 10h
  50. ret
  51. code ends
  52. end start
  53.