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
RevLine 
[2]1#ifdef VHDL
2/*
3 * $Id: RegisterFile_Monolithic_vhdl.cpp 146 2011-02-01 20:57:54Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
[15]9#include "Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/RegisterFile_Monolithic.h"
[2]10#include "Behavioural/include/Vhdl.h"
[44]11#include "Common/include/ToString.h"
[145]12
[2]13namespace morpheo                    {
14namespace behavioural                {
15namespace generic                    {
16namespace registerfile               {
[15]17namespace registerfile_monolithic    {
[2]18
[15]19  void RegisterFile_Monolithic::vhdl (void)
[2]20  {
[41]21    Vhdl * vhdl = new Vhdl (_name);
[2]22
[43]23    _interfaces->set_port     (vhdl);
24    _component ->vhdl_instance(vhdl);
[2]25
[43]26    vhdl_declaration (vhdl);
27    vhdl_body        (vhdl);
[2]28
[41]29    vhdl->generate_file();
30
31    delete vhdl;
[2]32  };
33
[15]34}; // end namespace registerfile_monolithic
[2]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.