source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_get_entity.cpp @ 94

Last change on this file since 94 was 94, checked in by rosiere, 16 years ago

Update document on Vhdl generation.

  • Property svn:keywords set to Id
File size: 1.0 KB
RevLine 
[2]1#ifdef VHDL
2
3/*
4 * $Id: Vhdl_get_entity.cpp 94 2008-12-15 11:04:03Z rosiere $
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/include/Vhdl.h"
[94]11#include "Common/include/Tabulation.h"
[2]12
13#include <sstream>
14
15namespace morpheo              {
16namespace behavioural          {
17 
[43]18#undef  FUNCTION
19#define FUNCTION "Vhdl::get_entity"
[71]20  std::string Vhdl::get_entity(uint32_t depth,
21                               std::string   name)
[2]22  {
[43]23    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
24
[94]25    std::string        tab = morpheo::tab(depth);
[71]26    std::ostringstream text;
[2]27
[71]28    text <<                                      std::endl
29         << tab << "entity " << name << " is" << std::endl;
30   
[2]31    if (_list_port.empty() == false)
[71]32      text << tab << "\tport ("                 << std::endl
33           << tab << get_port(depth+1)          << std::endl
34           << tab << "\t     );"                << std::endl;
[2]35   
[71]36    text << tab << "end " << name << ";"      << std::endl;
[2]37   
[43]38    log_printf(FUNC,Behavioural,FUNCTION,"End");
39     
[2]40    return text.str();
41  };
42 
43}; // end namespace behavioural         
44}; // end namespace morpheo             
45
46#endif
Note: See TracBrowser for help on using the repository browser.