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

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

Vhdl_Testbench : Modification du testbench. Maintenant complétement encapsuler dans la classe "Interfaces".
Suppression de la class Vhdl_Testbench dans un avenir proche :D
Suppression du répertoire Configuration.old

File size: 897 bytes
Line 
1#ifdef VHDL
2/*
3 * $Id$
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 "Include/ToString.h"
12namespace morpheo                    {
13namespace behavioural                {
14namespace generic                    {
15namespace registerfile               {
16namespace registerfile_monolithic    {
17
18  void RegisterFile_Monolithic::vhdl (void)
19  {
20    Vhdl * vhdl = new Vhdl (_name);
21
22    vhdl->set_library_work (_name + "_Pack");
23
24    vhdl_port   (vhdl);
25    vhdl_type   (vhdl);
26    vhdl_signal (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.