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

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

Modification des classes d'encapsulation des interfaces :

  • gère les signaux à écrire dans le vhdl
  • les traces pour le testbench
  • la génération des vhdl structurelles

-> test sur la Pattern History Table

File size: 625 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
23    log_printf(FUNC,Behavioural,"operator<<","End");
24
25    return output_stream;
26  };
27
28}; // end namespace behavioural         
29}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.