📄 base2decode.asm
字号:
.686
.model flat,stdcall
option casemap:none
.code
Base2Decode proc uses esi edi ebx pInputStr,pOutputData
xor eax,eax
mov esi,pInputStr
xor edx,edx
mov edi,pOutputData
xor ebx,ebx
jmp @F
.repeat
add edx,edx
inc esi
and eax,1
add ebx,1
or edx,eax
.if !(ebx&7)
mov [edi],dl
inc edi
.endif
@@: movzx eax,byte ptr [esi]
.until !eax
mov eax,ebx
ret
Base2Decode endp
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -