public Scope(EP_Compiler c, Merker fm, Scope parent) { _compiler = c; _parent = parent; this.fm = fm; memBlocks = new SortedSet <DP_MemBlock>(); memBlocks.Add(new DP_MemBlock(0, 16384)); code = new List <Instruction>(); memory = new List <Merker>(); loops = new Stack <EP_VP2.Loop>(); }
public EP_VP1(EP_Compiler compiler) { _compiler = compiler; }