Ignore:
Timestamp:
Dec 10, 2008, 7:31:39 PM (15 years ago)
Author:
rosiere
Message:

Almost complete design
with Test and test platform

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Core/Multi_Front_end/Front_end/Decod_unit/Decod_queue/include/Types.h

    r82 r88  
    2828  public : Ttype_t            * _type           ;
    2929  public : Toperation_t       * _operation      ;
     30  public : Tcontrol_t         * _no_execute     ;
    3031  public : Tcontrol_t         * _is_delay_slot  ;
    3132  public : Tgeneral_data_t    * _address        ;
     
    4344  public : Tspecial_address_t * _num_reg_re     ;
    4445  public : Texception_t       * _exception_use  ;
     46  public : Texception_t       * _exception      ;
    4547
    4648  public :  decod_queue_entry_t (uint32_t nb_inst):
     
    5254      _type           = new Ttype_t            [_nb_inst];
    5355      _operation      = new Toperation_t       [_nb_inst];
     56      _no_execute     = new Tcontrol_t         [_nb_inst];
    5457      _is_delay_slot  = new Tcontrol_t         [_nb_inst];
    5558      _address        = new Tgeneral_data_t    [_nb_inst];
     
    6770      _num_reg_re     = new Tspecial_address_t [_nb_inst];
    6871      _exception_use  = new Texception_t       [_nb_inst];
     72      _exception      = new Texception_t       [_nb_inst];
    6973
    7074      for (uint32_t i=0; i<_nb_inst; i++)
     
    7983      delete [] _type           ;
    8084      delete [] _operation      ;
     85      delete [] _no_execute     ;
    8186      delete [] _is_delay_slot  ;
    8287      delete [] _address        ;
     
    9499      delete [] _num_reg_re     ;
    95100      delete [] _exception_use  ;
     101      delete [] _exception      ;
    96102    }
    97103  };
Note: See TracChangeset for help on using the changeset viewer.