Emul8.Peripherals.CPU.TranslationCPU.ClearTranslationCache C# (CSharp) Méthode

ClearTranslationCache() public méthode

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