home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / W95SPCOD.ZIP / AFTERW95 / FLY / 50_RAND.ASM < prev    next >
Assembly Source File  |  1995-12-21  |  1KB  |  64 lines

  1. ;; ┌──────────────────┐
  2. ;; ███▀▀█ ███    ██ ███
  3. ;; ███▄   ███    ██▄███
  4. ;; ███    ███  ▄ ▄  ███
  5. ;; ▀▀▀    ▀▀▀▀▀▀ ▀▀▀▀▀▀
  6. ;; )C(CoPYWRoNG TflTdv
  7. ;;   chipcode for the 
  8. ;;      Wired 1995
  9. ;; └──────────────────┘
  10.  
  11. .486
  12. .MODEL Tiny
  13.  
  14.  
  15. CODE SEGMENT WORD PUBLIC USE16 'CODE'
  16.  
  17. Start:
  18.  
  19. ;; ∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙
  20.  
  21.        int 16h         ;; wait a number
  22.  
  23. ;; ∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙∙
  24.        aaa
  25.        cbw
  26.        mov  cl , 13h
  27.        xchg ax , cx
  28.        int  10h
  29.        mov  ah , 0a0h
  30.        mov  es , ax
  31.  
  32. ;; ........................................................................... 
  33.  
  34.        jcxz zero
  35.  
  36. ici:   push cx
  37.        mov  ax , 6464h
  38.        mov  cl , 3
  39. @@:    stosw
  40.        stosb
  41.        add  di , 317
  42.        xor  ah , al
  43.        loop @B
  44.        add  di , ax
  45.        pop  cx
  46.        loop ici    
  47.  
  48. ;; ........................................................................... 
  49.  
  50. zero:
  51.        xchg ax , cx
  52.        int  16h
  53.  
  54. ;; ........................................................................... 
  55.  
  56.        mov  ax , 3
  57.        int  10h
  58.        mov  ax , 1112h
  59.        int  10h
  60.        ret
  61.  
  62. CODE ENDS
  63. END Start
  64.