Lettuce.Debugger.CpuOnInvalidInstruction C# (CSharp) Method

CpuOnInvalidInstruction() private method

private CpuOnInvalidInstruction ( object sender, Tomato.InvalidInstructionEventArgs invalidInstructionEventArgs ) : void
sender object
invalidInstructionEventArgs Tomato.InvalidInstructionEventArgs
return void
        private void CpuOnInvalidInstruction(object sender, InvalidInstructionEventArgs invalidInstructionEventArgs)
        {
            InvalidInstruction(invalidInstructionEventArgs);
            if (breakOnInvalidInstructionToolStripMenuItem.Checked)
            {
                invalidInstructionEventArgs.ContinueExecution = false;
                CPU.IsRunning = false;
            }
        }
Debugger