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

  1. .286
  2. code segment public use16
  3.  
  4. assume cs:code
  5. org 100h
  6.  
  7. start:
  8.  
  9. int 16h                ; 2
  10.  
  11. cbw                    ; 1
  12. aaa                    ; 1
  13. shl al,2               ; 3
  14. xchg cx,ax             ; 1
  15.  
  16. mov al,13h             ; 2
  17. int 10h                ; 2 9
  18.  
  19.  
  20. push 0A000h            ; 3
  21. pop es                 ; 1 15
  22.  
  23. ;mov dx,013Dh
  24. mov bl,3h
  25.  
  26. mov al,64h           ; 3
  27.  
  28. jcxz fin
  29.  
  30. LP1:
  31.  
  32. add di,013Dh ;dx
  33. test cl,bl
  34. je a1
  35.  
  36. ;jmp cont
  37.  
  38.  
  39.    stosw               ; 1
  40.    stosb               ; 1
  41.    a1:
  42.    xor ah,al           ; 2
  43.  
  44. cont:
  45. loop LP1               ; 2 35
  46.  
  47. fin:
  48. int 16h                ; 2
  49.  
  50. cbw
  51. xchg ax,bx              ; 3
  52. int 10h                ; 2
  53.  
  54. mov ax,1112h           ; 3
  55. int 10h                ; 2 48
  56.  
  57. ret                    ; 1 49
  58. code ends
  59. end start
  60.