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

    r81 r85  
    6161      // *****[ pop ]*****
    6262      // read the queue, and update the pointer
    63     public : virtual T    pop  ()             = 0;
    64 
    65       // *****[ pop ]*****
    66       // read the queue, and update the pointer
    67     public : virtual T    pop  (uint32_t num) = 0;
     63    public : virtual T    pop  (uint32_t num=0) = 0;
    6864
    6965      // *****[ push ]*****
    7066      // Push a new value (they must have a slot free)
    71     public : virtual bool push (T val)        = 0;
     67    public : virtual bool push (T val)          = 0;
    7268 
    7369    }; // Queue
Note: See TracChangeset for help on using the changeset viewer.