Changeset 88 for trunk/IPs/systemC/processor/Morpheo/Behavioural/Custom
- Timestamp:
- Dec 10, 2008, 7:31:39 PM (16 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Behavioural/Custom
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Behavioural/Custom/include/Custom_default.h
r81 r88 26 26 custom_vhdl_t * default_get_vhdl_execute (void); 27 27 28 custom_information_t default_get_custom_information (uint32_t context); 28 //custom_information_t default_get_custom_information (uint32_t context); 29 custom_information_t default_get_custom_information (void); 29 30 30 31 }; // end namespace custom -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Custom/include/Custom_example.h
r81 r88 26 26 custom_vhdl_t * example_get_vhdl_execute (void); 27 27 28 custom_information_t example_get_custom_information (uint32_t context); 28 //custom_information_t example_get_custom_information (uint32_t context); 29 custom_information_t example_get_custom_information (void); 29 30 30 31 }; // end namespace custom -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Custom/src/Custom_default.cpp
r81 r88 223 223 #undef FUNCTION 224 224 #define FUNCTION "custom::default_get_custom_information" 225 custom_information_t default_get_custom_information (uint32_t context) 225 //custom_information_t default_get_custom_information (uint32_t context) 226 custom_information_t default_get_custom_information (void) 226 227 { 227 228 custom_information_t info; … … 236 237 info._get_vhdl_decod = &morpheo::behavioural::custom::default_get_vhdl_decod ; 237 238 info._get_vhdl_execute = &morpheo::behavioural::custom::default_get_vhdl_execute ; 239 238 240 return info; 239 241 } -
trunk/IPs/systemC/processor/Morpheo/Behavioural/Custom/src/Custom_example.cpp
r81 r88 265 265 #undef FUNCTION 266 266 #define FUNCTION "custom::example_get_custom_information" 267 custom_information_t example_get_custom_information (uint32_t context) 268 { 269 // for all context 270 267 //custom_information_t example_get_custom_information (uint32_t context) 268 custom_information_t example_get_custom_information (void) 269 { 271 270 custom_information_t info; 272 271 … … 280 279 info._get_vhdl_decod = &morpheo::behavioural::custom::example_get_vhdl_decod ; 281 280 info._get_vhdl_execute = &morpheo::behavioural::custom::example_get_vhdl_execute ; 281 282 282 return info; 283 283 }
Note: See TracChangeset
for help on using the changeset viewer.