Ignore:
Timestamp:
Dec 10, 2008, 7:31:39 PM (16 years ago)
Author:
rosiere
Message:

Almost complete design
with Test and test platform

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  
    2626  custom_vhdl_t               * default_get_vhdl_execute              (void);
    2727 
    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);
    2930
    3031}; // end namespace custom
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Custom/include/Custom_example.h

    r81 r88  
    2626  custom_vhdl_t               * example_get_vhdl_execute              (void);
    2727
    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);
    2930
    3031}; // end namespace custom
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Custom/src/Custom_default.cpp

    r81 r88  
    223223#undef  FUNCTION
    224224#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)
    226227  {
    227228    custom_information_t info;
     
    236237    info._get_vhdl_decod                = &morpheo::behavioural::custom::default_get_vhdl_decod               ;
    237238    info._get_vhdl_execute              = &morpheo::behavioural::custom::default_get_vhdl_execute             ;
     239
    238240    return info;
    239241  }
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/Custom/src/Custom_example.cpp

    r81 r88  
    265265#undef  FUNCTION
    266266#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  {
    271270    custom_information_t info;
    272271   
     
    280279    info._get_vhdl_decod                = &morpheo::behavioural::custom::example_get_vhdl_decod               ;
    281280    info._get_vhdl_execute              = &morpheo::behavioural::custom::example_get_vhdl_execute             ;
     281
    282282    return info;
    283283  }
Note: See TracChangeset for help on using the changeset viewer.