예제 #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
            }