Ignore:
Timestamp:
May 14, 2008, 3:09:48 PM (16 years ago)
Author:
rosiere
Message:
  • Ifetch_unit : systemC test ok
  • modif shell script and makefile.tools : SHELL=/bin/bash
File:
1 edited

Legend:

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

    r81 r85  
    107107      // return the n-eme slot.
    108108      // (first = 0)
    109     public : slot_t<T> read (uint32_t num)
     109    public : slot_t<T> read (uint32_t num=0)
    110110      {
    111111        if (num >= Queue <T>::_nb_slot)
     
    120120      // *****[ pop ]*****
    121121      // read the queue, and update the pointer
    122     public : T pop  ()
    123       {
    124         return pop (0);
    125       }
    126 
    127       // *****[ pop ]*****
    128       // read the queue, and update the pointer
    129     public : T pop  (uint32_t num)
     122    public : T pop  (uint32_t num=0)
    130123      {
    131124        if (num >= Queue <T>::_nb_slot)
Note: See TracChangeset for help on using the changeset viewer.