source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_set_library_work.cpp @ 43

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

Modif mineur : ajout d'info de débug

Release non stable

File size: 594 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_library_work"
20  void Vhdl::set_library_work (string      package_name)
21  {
22    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
23    set_list(_list_library_work, "use work."+ package_name + ".all");
24    log_printf(FUNC,Behavioural,FUNCTION,"End");
25  };
26 
27}; // end namespace behavioural         
28}; // end namespace morpheo             
29
30#endif
Note: See TracBrowser for help on using the repository browser.