16,747
社区成员




function IsOK(a:Integer):boolean;
Asm
cmp a,333
je Ok
jne notOK
db 34,23,56,67,3,57,54,2,28,67,69,0,4 ; 花指令,用来迷惑反编译器,其实你打些什么都行。。
Ok:mov @Result,1
jmp @Exit
notOK: mov @Result,0
@Exit:
end;
//调用:
if IsOk(a) then
//做什么
else
//不做什么