#ifdef VHDL /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Select/Pseudo_LRU/include/Pseudo_LRU.h" namespace morpheo { namespace behavioural { namespace generic { namespace select { namespace pseudo_lru { void Pseudo_LRU::vhdl_declaration (Vhdl & vhdl) { vhdl.set_type ("Ttable", "array (" + toString(_param._size_table-1) + " downto 0) of "+std_logic(_param._nb_entity-1)); vhdl.set_signal ("reg_TABLE", "Ttable"); for (uint32_t i=0; i<_param._nb_access; i++) { vhdl.set_signal ("access_entry_"+toString(i)+" ",std_logic(_param._nb_entity-1)); vhdl.set_signal ("access_next_entry_"+toString(i)+"",std_logic(_param._nb_entity-1)); vhdl.set_signal ("access_entity_"+toString(i)+" ",std_logic(static_cast(log2(_param._nb_entity)))); } for (uint32_t i=0; i<_param._nb_update; i++) { vhdl.set_signal ("update_next_entry_"+toString(i)+"",std_logic(_param._nb_entity-1)); } }; }; // end namespace pseudo_lru }; // end namespace select }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif