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

Last change on this file since 3 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 568 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  void Vhdl::set_alias (string      name1                 ,
19                        string      type1                 ,
20                        string      name2                 ,
21                        string      range2                )
22  {
23    set_list(_list_alias, "alias "+ name1+"\t: "+type1+"\tis "+name2+"\t"+range2);
24  };
25 
26}; // end namespace behavioural         
27}; // end namespace morpheo             
28
29#endif
Note: See TracBrowser for help on using the repository browser.