source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/src/New_Component_vhdl.cpp @ 53

Last change on this file since 53 was 53, checked in by rosiere, 17 years ago
  • Banc de registre multi banc
  • Banc de registre générique.
File size: 731 bytes
Line 
1#ifdef VHDL
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/@DIRECTORY/include/@COMPONENT.h"
10#include "Behavioural/include/Vhdl.h"
11
12namespace morpheo                    {
13namespace behavioural {
14@NAMESPACE_BEGIN
15
16#undef  FUNCTION
17#define FUNCTION "@COMPONENT::vhdl"
18  void @COMPONENT::vhdl (void)
19  {
20    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
21
22    Vhdl * vhdl = new Vhdl (_name);
23
24    _interfaces->set_port(vhdl);
25    _component->vhdl_instance(vhdl);
26
27    vhdl_declaration (vhdl);
28    vhdl_body        (vhdl);
29
30    vhdl->generate_file();
31
32    delete vhdl;
33
34    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
35  };
36
37@NAMESPACE_END
38}; // end namespace behavioural
39}; // end namespace morpheo             
40#endif
Note: See TracBrowser for help on using the repository browser.