/// <summary>
 /// Constructs a new instance
 /// </summary>
 public XILMemoryMapper()
 {
     Mapper = new MemoryMapper();
 }
 public XILMemoryMapperImpl(IList<XILSInstr> instrs, MemoryMapper mapper) :
     base(instrs)
 {
     Mapper = mapper;
 }