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

Last change on this file since 73 was 73, checked in by rosiere, 16 years ago

add two component :

  • Write Queue (in Moore version)
  • Execute Queue

add macro to help the interface allocation : Allocation.h

File size: 731 bytes
RevLine 
[2]1#ifdef VHDL
2/*
3 * $Id$
4 *
[73]5 * [ Description ]
[2]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
[53]16#undef  FUNCTION
17#define FUNCTION "@COMPONENT::vhdl"
[2]18  void @COMPONENT::vhdl (void)
19  {
[53]20    log_printf(FUNC,@COMPONENT,FUNCTION,"Begin");
[40]21
[50]22    Vhdl * vhdl = new Vhdl (_name);
[2]23
[42]24    _interfaces->set_port(vhdl);
25    _component->vhdl_instance(vhdl);
[2]26
27    vhdl_declaration (vhdl);
28    vhdl_body        (vhdl);
29
[50]30    vhdl->generate_file();
[40]31
32    delete vhdl;
33
[53]34    log_printf(FUNC,@COMPONENT,FUNCTION,"End");
[2]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.