Lettuce.Debugger.CpuOnInvalidInstruction C# (CSharp) 메소드

CpuOnInvalidInstruction() 개인적인 메소드

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