Changeset 118 for trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Timestamp:
- May 21, 2009, 12:01:32 AM (16 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Model.cpp
r112 r118 7 7 8 8 #include "Behavioural/include/Model.h" 9 #include "Common/include/Debug.h" 9 10 10 11 namespace morpheo { … … 16 17 { 17 18 log_begin(Behavioural,FUNCTION); 19 20 set_model(NAME_true ,MODEL_SYSTEMC,true ); 21 set_model(NAME_false,MODEL_SYSTEMC,false); 22 18 23 log_end(Behavioural,FUNCTION); 19 24 } -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Model_get_debug.cpp
r112 r118 7 7 8 8 #include "Behavioural/include/Model.h" 9 #include "Common/include/Debug.h" 9 10 10 11 namespace morpheo { … … 13 14 #undef FUNCTION 14 15 #define FUNCTION "Model::get_debug" 15 debug_verbosity_tModel::get_debug (std::string component)16 bool Model::get_debug (std::string component) 16 17 { 17 18 log_begin(Behavioural,FUNCTION); 18 19 19 debug_verbosity_t_return;20 bool _return; 20 21 21 22 std::map<std::string,model_t>::iterator it = models.find(component); -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Model_get_type.cpp
r112 r118 7 7 8 8 #include "Behavioural/include/Model.h" 9 #include "Common/include/Debug.h" 9 10 10 11 namespace morpheo { -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Model_print.cpp
r113 r118 7 7 8 8 #include "Behavioural/include/Model.h" 9 #include "Common/include/Debug.h" 9 10 10 11 namespace morpheo { -
trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Model_set_model.cpp
r113 r118 7 7 8 8 #include "Behavioural/include/Model.h" 9 #include "Common/include/Debug.h" 9 10 10 11 namespace morpheo { … … 13 14 #undef FUNCTION 14 15 #define FUNCTION "Model::set_model" 15 void Model::set_model (std::string component, model_type_t type, debug_verbosity_tdebug)16 void Model::set_model (std::string component, model_type_t type, bool debug) 16 17 { 17 18 log_begin(Behavioural,FUNCTION);
Note: See TracChangeset
for help on using the changeset viewer.