Emul8.Peripherals.CPU.TranslationCPU.IsBlockBeginEventEnabled C# (CSharp) Method

IsBlockBeginEventEnabled() private method

private IsBlockBeginEventEnabled ( ) : uint
return uint
        private uint IsBlockBeginEventEnabled()
        {
            return (blockBeginHook != null || executionMode == ExecutionMode.SingleStep || isAnyInactiveHook) ? 1u : 0u;
        }
TranslationCPU