source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_set_body_component_port_map.cpp @ 44

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

Modif mineur : ajout d'info de débug

Release non stable

File size: 705 bytes
Line 
1#ifdef VHDL
2
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/include/Vhdl.h"
11
12#include <sstream>
13using namespace std;
14
15namespace morpheo              {
16namespace behavioural          {
17 
18#undef  FUNCTION
19#define FUNCTION "Vhdl::set_body_component_port_map"
20  void Vhdl::set_body_component_port_map (list<string> & list_port_map      ,
21                                          string         name_port          ,
22                                          string         name_signal        )
23  {
24    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
25    set_list(list_port_map, name_port + "\t=>" + name_signal);
26    log_printf(FUNC,Behavioural,FUNCTION,"End");
27  };
28 
29}; // end namespace behavioural         
30}; // end namespace morpheo             
31
32#endif
Note: See TracBrowser for help on using the repository browser.