aboutsummaryrefslogtreecommitdiff
path: root/crypter/simple_decoder.asm
blob: 7d2670c508c945d03d7433950da5ae5f5e5e9480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
BITS 32


jmp		short go
next:
pop		esi
xor		ecx,ecx
mov		cl,0
change:
sub byte	[esi + ecx - 1],0
dec		cl
jnz		change
jmp		short ok
go:
call		next
ok: