Emul8.Peripherals.CPU.TranslationCPU.ClearTranslationCache C# (CSharp) Method

ClearTranslationCache() public method

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