source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Select/Select_Priority_Fixed/src/Select_Priority_Fixed_vhdl_body.cpp @ 40

Last change on this file since 40 was 29, checked in by rosiere, 17 years ago

Changement de classes de gestions des Interfaces.

-> simplification pour les déclarations de ports, application pour le composant Select_Priority_Fixed.
-> !!! essayer de supprimer la redondance dans les fichierx xxx_vhdl_testbench_transition.cpp

File size: 1.6 KB
RevLine 
[10]1#ifdef VHDL
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
[15]9#include "Behavioural/Generic/Select/Select_Priority_Fixed/include/Select_Priority_Fixed.h"
[10]10
11namespace morpheo                    {
12namespace behavioural {
13namespace generic {
14namespace select {
[15]15namespace select_priority_fixed {
[10]16
17
[29]18  void Select_Priority_Fixed::vhdl_body (Vhdl * & vhdl)
[10]19  {
[15]20    log_printf(FUNC,Select_Priority_Fixed,"vhdl_body","Begin");
[29]21    vhdl->set_body ("");
[10]22
[29]23    vhdl->set_body("internal_entity <=");
[10]24    for (uint32_t i=0; i<_param._nb_entity; i++)
25      {
[29]26        vhdl->set_body("\t"+std_logic_conv(_param._size_entity+1,i)+" when in_VAL_"+toString(i)+"='1' else");
[10]27      }
[29]28    vhdl->set_body("\t"+std_logic_conv(_param._size_entity+1,1<<_param._size_entity)+";");
29    vhdl->set_body ("");
[10]30
31    if (_param._encoding_one_hot)
32      {
33        for (uint32_t i=0; i<_param._nb_entity; i++)
[29]34          vhdl->set_body("out_ACK_"+toString(i)+" <= '1' when internal_entity"+std_logic_range(_param._size_entity+1)+" = "+std_logic_conv(_param._size_entity+1,i)+" else '0';");
35        vhdl->set_body ("");
[10]36      }
37
38    if (_param._encoding_compact)
39      {
[29]40        vhdl->set_body ("out_ENTITY     <=     internal_entity"+std_logic_range(_param._size_entity-1,                  0)+";");
41        vhdl->set_body ("out_ENTITY_ACK <= not internal_entity"+std_logic_range(_param._size_entity  ,_param._size_entity)+";");
[10]42      }   
43   
[15]44    log_printf(FUNC,Select_Priority_Fixed,"vhdl_body","End");
[10]45  };
46
[15]47}; // end namespace select_priority_fixed
[10]48}; // end namespace select
49}; // end namespace generic
50
51}; // end namespace behavioural
52}; // end namespace morpheo             
53#endif
Note: See TracBrowser for help on using the repository browser.