示例#1
0
            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
            }