Emul8.Peripherals.CPU.TranslationCPU.ReportAbort C# (CSharp) 메소드

ReportAbort() 개인적인 메소드

private ReportAbort ( string message ) : void
message string
리턴 void
        private void ReportAbort(string message)
        {
            this.Log(LogLevel.Error, "CPU abort [PC=0x{0:X}]: {1}.", PC, message);
            throw new CpuAbortException(message);
        }
TranslationCPU