source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_set_alias.cpp @ 62

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

Modif mineur : ajout d'info de débug

Release non stable

File size: 656 bytes
RevLine 
[2]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 
[43]18#undef  FUNCTION
19#define FUNCTION "Vhdl::set_alias"
20  void Vhdl::set_alias (string      name1 ,
21                        string      type1 ,
22                        string      name2 ,
23                        string      range2)
[2]24  {
[43]25    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
[2]26    set_list(_list_alias, "alias "+ name1+"\t: "+type1+"\tis "+name2+"\t"+range2);
[43]27    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]28  };
29 
30}; // end namespace behavioural         
31}; // end namespace morpheo             
32
33#endif
Note: See TracBrowser for help on using the repository browser.