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

ClearTranslationCache() 공개 메소드

public ClearTranslationCache ( bool skipSync = false ) : void
skipSync bool
리턴 void
        public void ClearTranslationCache(bool skipSync = false)
        {
            if(skipSync)
            {
                TlibInvalidateTranslationCache();
            }
            else
            {
                using(machine.ObtainPausedState())
                {
                    TlibInvalidateTranslationCache();
                }
            }
        }
TranslationCPU