Ignore:
Timestamp:
Mar 18, 2009, 11:36:26 PM (15 years ago)
Author:
rosiere
Message:

1) Stat_list : fix retire old and new register bug
2) Stat_list : remove read_counter and valid flag, because validation of destination is in retire step (not in commit step)
3) Model : add class Model (cf Morpheo.sim)
4) Allocation : alloc_interface_begin and alloc_interface_end to delete temporary array.
5) Script : add distexe.sh
6) Add Comparator, Multiplier, Divider. But this component are not implemented
7) Software : add Dhrystone

File:
1 edited

Legend:

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

    r88 r112  
    2323namespace decod {
    2424
     25    const uint32_t nb_opcod_type = 14;
     26    const uint32_t tab_opcod_type [] = {MAX_OPCOD_0,
     27                                        MAX_OPCOD_1 ,
     28                                        MAX_OPCOD_2 ,
     29                                        MAX_OPCOD_3 ,
     30                                        MAX_OPCOD_4 ,
     31                                        MAX_OPCOD_5 ,
     32                                        MAX_OPCOD_6 ,
     33                                        MAX_OPCOD_7 ,
     34                                        MAX_OPCOD_8 ,
     35                                        MAX_OPCOD_9 ,
     36                                        MAX_OPCOD_10,
     37                                        MAX_OPCOD_11,
     38                                        MAX_OPCOD_12,
     39                                        MAX_OPCOD_13};
     40
    2541  class Parameters : public morpheo::behavioural::Parameters
    2642  {
     
    3753  public : bool             ** _instruction_implemeted       ; //[nb_context][nb_instruction]
    3854  public : morpheo::behavioural::custom::custom_information_t (*_get_custom_information) (void);
    39    
     55
    4056  public : uint32_t            _max_nb_inst_fetch;
    4157//public : uint32_t            _size_address_inst;
Note: See TracChangeset for help on using the changeset viewer.