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

Last change on this file since 146 was 146, checked in by rosiere, 13 years ago

1) Integration of RegisterFile_Internal_Banked in RegisterFile?
2) Erase "read_write" interface in RegisterFile_Monolithic component
3) Add smith predictor parameters in Load_store_pointer_unit.
4) Fix not statistics flags

  • Property svn:keywords set to Id
File size: 897 bytes
Line 
1#ifdef VHDL
2/*
3 * $Id: RegisterFile_Monolithic_vhdl.cpp 146 2011-02-01 20:57:54Z 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"
12
13namespace morpheo                    {
14namespace behavioural                {
15namespace generic                    {
16namespace registerfile               {
17namespace registerfile_monolithic    {
18
19  void RegisterFile_Monolithic::vhdl (void)
20  {
21    Vhdl * vhdl = new Vhdl (_name);
22
23    _interfaces->set_port     (vhdl);
24    _component ->vhdl_instance(vhdl);
25
26    vhdl_declaration (vhdl);
27    vhdl_body        (vhdl);
28
29    vhdl->generate_file();
30
31    delete vhdl;
32  };
33
34}; // end namespace registerfile_monolithic
35}; // end namespace registerfile
36}; // end namespace generic
37}; // end namespace behavioural         
38}; // end namespace morpheo             
39#endif
Note: See TracBrowser for help on using the repository browser.