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

OnBlockBegin() private method

private OnBlockBegin ( uint address, uint size ) : void
address uint
size uint
return void
        private void OnBlockBegin(uint address, uint size)
        {
            ReactivateHooks();
            HandleStepping();
            skipNextStepping = false;

            var bbHook = blockBeginHook;
            if(bbHook == null)
            {
                // naturally, this export should actually not be called if the hook
                // is null, but the check could be done where it was still a non
                // null value
                return;
            }
            bbHook(address, size);
        }
TranslationCPU