source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Generic/Victim/Victim_Pseudo_LRU/src/Victim_Pseudo_LRU_vhdl.cpp @ 15

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

Interface normalisé
Début du banc de registres multi niveaux

File size: 1.2 KB
RevLine 
[10]1#ifdef VHDL
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
[15]9#include "Behavioural/Generic/Victim/Victim_Pseudo_LRU/include/Victim_Pseudo_LRU.h"
[10]10#include "Behavioural/include/Vhdl.h"
11
12namespace morpheo                    {
13namespace behavioural {
14namespace generic {
15namespace victim {
[15]16namespace victim_pseudo_lru {
[10]17
18
[15]19  void Victim_Pseudo_LRU::vhdl (void)
[10]20  {
[15]21    log_printf(FUNC,Victim_Pseudo_LRU,"vhdl","Begin");
[10]22
[15]23    log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Construction of vhdl");
[10]24    Vhdl vhdl (_name);
25
[15]26    log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set library");
[10]27    vhdl.set_library_work (_name + "_Pack");
28
[15]29    log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set port");
[10]30    vhdl_port        (vhdl);
[15]31    log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set declaration");
[10]32    vhdl_declaration (vhdl);
[15]33    log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Set body");
[10]34    vhdl_body        (vhdl);
[15]35    log_printf(TRACE,Victim_Pseudo_LRU,"vhdl","Generate File");
[10]36    vhdl.generate_file();
[15]37    log_printf(FUNC,Victim_Pseudo_LRU,"vhdl","End");
[10]38  };
39
[15]40}; // end namespace victim_pseudo_lru
[10]41}; // end namespace victim
42}; // end namespace generic
43}; // end namespace behavioural
44}; // end namespace morpheo             
45#endif
Note: See TracBrowser for help on using the repository browser.