(Assembly) ICE 0xF1 by External

Created the Wednesday 22 June 2022. Updated 4 days, 8 hours ago.

Code

            BOOL IsDebuggerPresent_IceBp()
{
    __try
    { 
        __asm __emit 0xF1 
    }
    __except(1) 
    { 
        return FALSE; 
    }
    return TRUE;
}