Example #1
0
 //生成P-Code代码
 public void produceCodes(Pcode.PC f, int l, int a)
 {
     pcodeList[arrayPtr++] = new Pcode(f, l, a);
 }
Example #2
0
 public void AddPcode(Pcode.PC f, int l, int a)
 {
     pcodeList[currentCode] = new Pcode(f, l, a);
     currentCode++;
 }