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.h

    r81 r85  
    5959      // return the n-eme slot.
    6060      // (first = 0)
    61     public : slot_t<T> read (uint32_t num)
     61    public : slot_t<T> read (uint32_t num=0)
    6262      {
    6363        if (num >= Queue <T>::_nb_slot)
     
    7272      // *****[ pop ]*****
    7373      // read the queue, and update the pointer
    74     public : T pop  ()
    75       {
    76         return pop (0);
    77       }
    78 
    79       // *****[ pop ]*****
    80       // read the queue, and update the pointer
    81     public : T pop  (uint32_t num)
     74    public : T pop  (uint32_t num=0)
    8275      {
    8376        if (num >= Queue <T>::_nb_slot)
Note: See TracChangeset for help on using the changeset viewer.