source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/src/Parameters_print.cpp @ 81

Last change on this file since 81 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 1.6 KB
Line 
1/*
2 * $Id: Parameters_print.cpp 81 2008-04-15 18:40:01Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include <stdint.h>
9#include "Behavioural/Generic/RegisterFile/RegisterFile_Monolithic/include/Parameters.h"
10#include "Behavioural/include/XML.h"
11
12namespace morpheo                    {
13namespace behavioural                {
14namespace generic                    {
15namespace registerfile               {
16namespace registerfile_monolithic    {
17
18  std::string Parameters::print (uint32_t depth)
19  {
20    XML xml ("registerfile_monolithic");
21
22    xml.balise_open("registerfile_monolithic");
23    xml.singleton_begin("nb_port_read      "); xml.attribut("value",toString(_nb_port_read      )); xml.singleton_end();
24    xml.singleton_begin("nb_port_write     "); xml.attribut("value",toString(_nb_port_write     )); xml.singleton_end();
25    xml.singleton_begin("nb_port_read_write"); xml.attribut("value",toString(_nb_port_read_write)); xml.singleton_end();
26    xml.singleton_begin("nb_word           "); xml.attribut("value",toString(_nb_word           )); xml.singleton_end();
27    xml.singleton_begin("size_word         "); xml.attribut("value",toString(_size_word         )); xml.singleton_end();
28    xml.balise_close();
29
30    return xml.get_body(depth);
31  };
32
33  std::ostream& operator<< (std::ostream& output_stream ,
34                            morpheo::behavioural::generic::registerfile::registerfile_monolithic::Parameters & x)
35  {
36    output_stream << x.print(0);
37   
38    return output_stream;
39  };
40
41}; // end namespace registerfile_monolithic
42}; // end namespace registerfile
43}; // end namespace generic
44}; // end namespace behavioural         
45}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.