Ignore:
Timestamp:
Apr 15, 2008, 8:40:01 PM (16 years ago)
Author:
rosiere
Message:
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
File:
1 edited

Legend:

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

    • Property svn:keywords set to Id
    r80 r81  
    2525                         Parameters * param) : Queue <T> (name,param->_size)
    2626      {
     27        _ptr_read  = 0;
     28        _ptr_write = 0;
    2729      };
    2830     
     
    104106     
    105107      // *****[ push ]*****
     108  public : bool push (T val)
     109    {
     110      return push (0, val);
     111    }
     112
    106113      // Push a new value (they must have a slot free)
    107114      // Is sort by delay
Note: See TracChangeset for help on using the changeset viewer.