Ignore:
Timestamp:
Dec 16, 2008, 5:24:26 PM (15 years ago)
Author:
rosiere
Message:

1) Update Prediction Table - New architecture (systemC) done (and tested) -> need change interface in top level
2) Change documentation on VHDL generation
3) Change VHDL constant (case std_logic and std_logic_vector)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_set_constant.cpp

    r81 r95  
    2727
    2828  void Vhdl::set_constant (std::string      name     ,
    29                            uint32_t    size     ,
     29                           uint32_t         size     ,
    3030                           std::string      init)
    3131  {
     
    3535  };
    3636
    37   void Vhdl::set_constant (std::string      name     ,
     37  void Vhdl::set_constant (std::string name     ,
    3838                           uint32_t    size     ,
    3939                           uint32_t    init)
    4040  {
    4141    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
    42     set_constant(name,std_logic(size),std_logic_conv(size,init));
     42    set_constant(name,std_logic(size),std_logic_cst(size,init));
    4343    log_printf(FUNC,Behavioural,FUNCTION,"End");
    4444  };
Note: See TracChangeset for help on using the changeset viewer.