Ignore:
Timestamp:
Jun 17, 2009, 2:11:25 PM (15 years ago)
Author:
rosiere
Message:

1) Add test and configuration
2) Fix Bug
3) Add log file in load store unit
4) Fix Bug in environment

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/Environment/include/Respons.h

    r81 r124  
    99  class Respons
    1010  {
     11  public : uint32_t port   ;
    1112  public : T1       trdid  ;  // number of thread
    1213  public : T2       pktid  ;  // number of packet
     
    2627//     };
    2728
    28   public : Respons (T1       trdid    ,
     29  public : Respons (uint32_t port     ,
     30                    T1       trdid    ,
    2931                    T2       pktid    ,
    3032                    uint32_t nb_word  ,
     
    3436                   )
    3537    {
     38      this->port      = port;
    3639      this->trdid     = trdid;
    3740      this->pktid     = pktid;
     
    5760  public : friend std::ostream& operator<< (std::ostream& output, Respons x)
    5861    {
    59       output << x.trdid              << " "
     62      output << x.port               << " "
     63             << x.trdid              << " "
    6064             << x.pktid              << " "
    6165             << x.error              << " ";
Note: See TracChangeset for help on using the changeset viewer.