コード例 #1
0
ファイル: ExecutionContext.cs プロジェクト: zpoo32/Ryujinx
        public ExecutionContext()
        {
            _nativeContext = new NativeContext();

            Running = true;

            _nativeContext.SetCounter(MinCountForCheck);
        }
コード例 #2
0
        public ExecutionContext(IJitMemoryAllocator allocator)
        {
            _nativeContext = new NativeContext(allocator);

            Running = true;

            _nativeContext.SetCounter(MinCountForCheck);
        }