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