source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_set_port.cpp @ 69

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

Modif mineur : ajout d'info de débug

Release non stable

File size: 924 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_port"
[2]20  void Vhdl::set_port (string      name     ,
21                       direction_t direction,
22                       string      type     )
23  {
[43]24    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
[2]25    set_list (_list_port, name + "\t: " + direction_toString(direction) + " " + type);
[43]26    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]27  };
28
29  void Vhdl::set_port (string      name     ,
30                       direction_t direction,
31                       uint32_t    size     )
32  {
[43]33    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
[2]34    set_port(name,direction,std_logic(size));
[43]35    log_printf(FUNC,Behavioural,FUNCTION,"End");
[2]36  };
37   
38}; // end namespace behavioural         
39}; // end namespace morpheo             
40
41#endif
Note: See TracBrowser for help on using the repository browser.