コード例 #1
0
ファイル: ZMachine.cs プロジェクト: zerodowned/angelisland
            public CachedCode(int nextPC, ZCodeDelegate code)
            {
                this.NextPC = nextPC;
                this.Code   = code;
#if BENCHMARK
                this.Cycles = 0;
#endif
            }
コード例 #2
0
ファイル: ZMachine.cs プロジェクト: dbremner/zlr
            public CachedCode(int nextPC, ZCodeDelegate code)
            {
                this.NextPC = nextPC;
                this.Code = code;
#if BENCHMARK
                this.Cycles = 0;
#endif
            }