示例#1
0
文件: GenCode.cs 项目: tagg7/cflat435
 // Constructor
 public GenCode()
 {
     Asm           = new ARMAssemblerCode();
     regAvailable  = new bool[12];
     stringConsts  = new List <Tuple <string, string> >();
     nextLabelNum  = 1;
     nextStringNum = 1;
     resetRegs();
 }
示例#2
0
文件: GenCode.cs 项目: tagg7/cflat435
 // Constructor
 public GenCode()
 {
     Asm = new ARMAssemblerCode();
     regAvailable = new bool[12];
     stringConsts = new List<Tuple<string,string>>();
     nextLabelNum = 1;
     nextStringNum = 1;
     resetRegs();
 }