source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_generate_file_package.cpp @ 113

Last change on this file since 113 was 113, checked in by rosiere, 15 years ago

1) Add modelsim simulation systemC
2) Modelsim cosimulation systemC / VHDL is not finish !!!! (cf execute_queue and write_unit)
3) Add multi architecture
5) Add template for comparator, multiplier and divider
6) Change Message
Warning) Various test macro have change, many selftest can't compile

  • Property svn:keywords set to Id
File size: 884 bytes
RevLine 
[2]1#ifdef VHDL
2
3/*
4 * $Id: Vhdl_generate_file_package.cpp 113 2009-04-14 18:39:12Z rosiere $
5 *
[113]6 * [ Description ]
[2]7 *
8 */
9
10#include "Behavioural/include/Vhdl.h"
[88]11#include "Common/include/Environment.h"
[2]12#include <sstream>
13#include <fstream>
14
15namespace morpheo              {
16namespace behavioural          {
17
18  void Vhdl::generate_file_package(void)
19  {
20    log_printf(FUNC,Behavioural,"generate_file_package","Begin");
21
[88]22    directory();
23
[71]24    std::string name     = _name + "_Pack";
[113]25    std::string filename = MORPHEO_VHDL + "/" + name + VHDL_EXTENSION;
[2]26
[88]27    msg_printf(INFORMATION,_("Generate file \"%s\"."),filename.c_str());
[2]28
[71]29    std::ofstream file;
30    file.open(filename.c_str(),std::ios::out | std::ios::trunc);
[2]31
32    file << get_package (0,filename, name, _name);
33
34    file.close();
35
36    log_printf(FUNC,Behavioural,"generate_file_package","End");
37  };
38 
39}; // end namespace behavioural         
40}; // end namespace morpheo             
41
42#endif
Note: See TracBrowser for help on using the repository browser.