Changeset 884


Ignore:
Timestamp:
03/02/09 16:33:59 (4 years ago)
Author:
ivan.miro-panades@…
Message:

Added the files for ANOC and FHT modules

Location:
trunk/soclib/soclib/communication/anoc/common
Files:
12 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/soclib/soclib/communication/anoc/common/source/include/anoc_transaction.h

    r737 r884  
    280280  /// data field 
    281281  t_uint32 m_data;              // data for remaining flits in a packet 
     282  sc_uint<36> m_data_36;        // data for VCI data compatibility 
    282283 
    283284public: 
     
    504505  inline void set_data(t_uint32 data) {  
    505506    m_data = data; 
     507  } 
     508 
     509  /// Returns the data field  
     510  inline sc_uint<36> get_data_36() const { 
     511    return m_data_36; 
     512  } 
     513  /// Sets the data field  
     514  inline void set_data_36(sc_uint<36> data) {  
     515    m_data_36 = data; 
    506516  } 
    507517 
Note: See TracChangeset for help on using the changeset viewer.