source: trunk/IPs/systemC/processor/Morpheo/Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/Two_Level_Branch_Predictor/Two_Level_Branch_Predictor_Glue/src/Two_Level_Branch_Predictor_Glue_vhdl.cpp @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 1.1 KB
Line 
1#ifdef VHDL
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/Stage_1_Ifetch/Predictor/Meta_Predictor/Two_Level_Branch_Predictor/Two_Level_Branch_Predictor_Glue/include/Two_Level_Branch_Predictor_Glue.h"
10#include "Behavioural/include/Vhdl.h"
11
12namespace morpheo                    {
13namespace behavioural {
14namespace stage_1_ifetch {
15namespace predictor {
16namespace meta_predictor {
17namespace two_level_branch_predictor {
18namespace two_level_branch_predictor_glue {
19
20
21  void Two_Level_Branch_Predictor_Glue::vhdl (void)
22  {
23    log_printf(FUNC,Two_Level_Branch_Predictor_Glue,"vhdl","Begin");
24    Vhdl vhdl (_name);
25
26    vhdl.set_library_work (_name + "_Pack");
27
28    vhdl_port        (vhdl);
29    vhdl_declaration (vhdl);
30    vhdl_body        (vhdl);
31
32    vhdl.generate_file();
33    log_printf(FUNC,Two_Level_Branch_Predictor_Glue,"vhdl","End");
34
35  };
36
37}; // end namespace two_level_branch_predictor_glue
38}; // end namespace two_level_branch_predictor
39}; // end namespace meta_predictor
40}; // end namespace predictor
41}; // end namespace stage_1_ifetch
42
43}; // end namespace behavioural
44}; // end namespace morpheo             
45#endif
Note: See TracBrowser for help on using the repository browser.