source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/RegisterFile_Monolithic_vhdl_declaration.cpp @ 97

Last change on this file since 97 was 97, checked in by rosiere, 16 years ago

1) Update Prediction Table : statistics
2) Size instruction address on 30 bits
3) Change Log File
4) Add debug_level in simulation configuration file

  • Property svn:keywords set to Id
File size: 868 bytes
Line 
1#ifdef VHDL
2/*
3 * $Id: RegisterFile_Monolithic_vhdl_declaration.cpp 97 2008-12-19 15:34:00Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/RegisterFile_Monolithic.h"
10#include "Behavioural/include/Vhdl.h"
11#include "Common/include/ToString.h"
12namespace morpheo                    {
13namespace behavioural                {
14namespace generic                    {
15namespace registerfile               {
16namespace registerfile_monolithic    {
17
18  void RegisterFile_Monolithic::vhdl_declaration (Vhdl * & vhdl)
19  {
20    vhdl->set_type ("Tregfile", "array " + _std_logic_range(_param->_nb_word) + " of " + std_logic(_param->_size_word));
21
22    vhdl->set_signal ("reg_DATA", "Tregfile");
23  };
24
25}; // end namespace registerfile_monolithic
26}; // end namespace registerfile
27}; // end namespace generic
28}; // end namespace behavioural         
29}; // end namespace morpheo             
30#endif
Note: See TracBrowser for help on using the repository browser.