Exemplo n.º 1
0
 public SelectSRAMSymbolEventArgs(int address, int length, string mapname, string filename1, string filename2, bool showdiffmap, SymbolCollection symColl, AddressLookupCollection adrColl)
 {
     this._address     = address;
     this._length      = length;
     this._mapname     = mapname;
     this._filename1   = filename1;
     this._filename2   = filename2;
     this._showdiffmap = showdiffmap;
     this._symbols     = symColl;
     this._addresses   = adrColl;
 }
Exemplo n.º 2
0
 public SelectSymbolEventArgs(int address, int length, string mapname, string filename, bool showdiffmap, SymbolCollection symColl, AddressLookupCollection adrColl, Trionic5File _file, Trionic5FileInformation _fileinfo)
 {
     this._address                      = address;
     this._length                       = length;
     this._mapname                      = mapname;
     this._filename                     = filename;
     this._showdiffmap                  = showdiffmap;
     this._symbols                      = symColl;
     this._addresses                    = adrColl;
     this.m_CompTrionic5File            = _file;
     this.m_CompTrionic5FileInformation = _fileinfo;
 }