source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component_vbe/src/New_Component_vhdl.cpp @ 146

Last change on this file since 146 was 82, checked in by rosiere, 16 years ago
  • support locale (now must "just" translate)
  • update all component with new test format
  • update all component with usage
  • New component : decod queue and prediction_unit
File size: 703 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_begin(@COMPONENT,FUNCTION);
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_end(@COMPONENT,FUNCTION);
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.