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

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

Modification en profondeur de Component-port_map.
Compilation ok pour Register_unit ... a tester (systemC et vhdl)

File size: 706 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Signal.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13  ostream& operator<< (ostream& output_stream,
14                       morpheo::behavioural::Signal & x)
15  {
16    log_printf(FUNC,Behavioural,"operator<<","Begin");
17
18    output_stream << x._name ;
19    output_stream << "\t{" << x._size << "}\t"
20                  << toString(x._direction)    << "\t"
21                  << toString(x._presence_port)
22                  << "sc_signal : " << hex << x._sc_signal << " - " << x._sc_signal_map << dec;
23
24    log_printf(FUNC,Behavioural,"operator<<","End");
25
26    return output_stream;
27  };
28
29}; // end namespace behavioural         
30}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.