├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── cmake.yml │ ├── release.yml │ └── visualstudio.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── NEWS ├── NOTICE ├── README.md ├── RELEASENOTES.md ├── cci └── common │ └── cci_version.h ├── cmake ├── INSTALL_USING_CMAKE └── SystemCCCIConfig.cmake.in ├── configuration ├── AUTHORS ├── CMakeLists.txt ├── README.md ├── cmake │ ├── FindSystemCLanguage.cmake │ └── run_test.cmake ├── docs │ ├── README │ └── SystemC_Configuration_Tutorial.pdf ├── examples │ ├── CMakeLists.txt │ ├── README.md │ ├── build-msvc │ │ ├── Makefile │ │ ├── Makefile.config │ │ ├── Makefile.rules │ │ ├── README.md │ │ ├── cci_examples.props │ │ ├── cci_examples.sln │ │ ├── openhere.bat │ │ └── vsvars.bat │ └── cci │ │ ├── common │ │ └── inc │ │ │ ├── param_tracker.h │ │ │ └── xreport.hpp │ │ ├── ex01_Simple_Int_Param │ │ ├── docs │ │ │ └── ex01_Simple_Int_Param.pdf │ │ ├── ex01_Simple_Int_Param.cpp │ │ ├── ex01_Simple_Int_Param.sln │ │ ├── ex01_Simple_Int_Param.vcxproj │ │ ├── ex01_config_ip.h │ │ ├── ex01_simple_ip.h │ │ └── golden.log │ │ ├── ex02_Fully_Supported_Data_Type_Param │ │ ├── docs │ │ │ └── ex02_Fully_Supported_Data_Type_Param.pdf │ │ ├── ex02_Fully_Supported_Data_Type_Param.cpp │ │ ├── ex02_Fully_Supported_Data_Type_Param.sln │ │ ├── ex02_Fully_Supported_Data_Type_Param.vcxproj │ │ ├── ex02_config_ip.h │ │ ├── ex02_simple_ip.h │ │ └── golden.log │ │ ├── ex03_Elab_Time_Param │ │ ├── docs │ │ │ └── ex03_Elab_Time_Param.pdf │ │ ├── ex03_Elab_Time_Param.cpp │ │ ├── ex03_Elab_Time_Param.sln │ │ ├── ex03_Elab_Time_Param.vcxproj │ │ ├── ex03_config_ip.h │ │ ├── ex03_simple_ip.h │ │ └── golden.log │ │ ├── ex04_Simple_Immutable_Param │ │ ├── docs │ │ │ └── ex04_Simple_Immutable_Param.pdf │ │ ├── ex04_Simple_Immutable_Param.cpp │ │ ├── ex04_Simple_Immutable_Param.sln │ │ ├── ex04_Simple_Immutable_Param.vcxproj │ │ ├── ex04_config_ip.h │ │ ├── ex04_simple_ip.h │ │ └── golden.log │ │ ├── ex05_Default_and_Preset_Value │ │ ├── docs │ │ │ └── ex05_Default_and_Preset_Value.pdf │ │ ├── ex05_Default_and_Preset_Value.cpp │ │ ├── ex05_Default_and_Preset_Value.sln │ │ ├── ex05_Default_and_Preset_Value.vcxproj │ │ ├── ex05_config_ip.h │ │ ├── ex05_simple_ip.h │ │ └── golden.log │ │ ├── ex06_Parameter_Naming │ │ ├── docs │ │ │ └── ex06_Parameter_Naming.pdf │ │ ├── ex06_Parameter_Naming.cpp │ │ ├── ex06_Parameter_Naming.sln │ │ ├── ex06_Parameter_Naming.vcxproj │ │ ├── ex06_config_ip.h │ │ ├── ex06_simple_ip.h │ │ └── golden.log │ │ ├── ex07_Parameter_Information │ │ ├── README.txt │ │ ├── docs │ │ │ └── ex07_Parameter_Information.pdf │ │ ├── ex07_Parameter_Information.cpp │ │ ├── ex07_Parameter_Information.sln │ │ ├── ex07_Parameter_Information.vcxproj │ │ ├── ex07_observer.h │ │ ├── ex07_parameter_configurer.h │ │ ├── ex07_parameter_owner.h │ │ └── golden.log │ │ ├── ex08_Parameter_Value_Change_Callbacks │ │ ├── docs │ │ │ └── ex08_Parameter_Value_Change_Callbacks.pdf │ │ ├── ex08_Parameter_Value_Change_Callbacks.cpp │ │ ├── ex08_Parameter_Value_Change_Callbacks.sln │ │ ├── ex08_Parameter_Value_Change_Callbacks.vcxproj │ │ ├── ex08_config_ip.h │ │ ├── ex08_simple_ip.h │ │ └── golden.log │ │ ├── ex09_Parent_Control_of_Preset_Values │ │ ├── docs │ │ │ └── ex09_Parent_Control_of_Preset_Values.pdf │ │ ├── ex09_Parent_Control_of_Preset_Values.cpp │ │ ├── ex09_Parent_Control_of_Preset_Values.sln │ │ ├── ex09_Parent_Control_of_Preset_Values.vcxproj │ │ ├── ex09_initiator.h │ │ ├── ex09_router.h │ │ ├── ex09_target.h │ │ ├── ex09_top_module.h │ │ └── golden.log │ │ ├── ex10_Shared_Parameters │ │ ├── docs │ │ │ └── ex10_Shared_Parameters.pdf │ │ ├── ex10_Shared_Parameters.cpp │ │ ├── ex10_Shared_Parameters.sln │ │ ├── ex10_Shared_Parameters.vcxproj │ │ ├── ex10_parameter_configurator.h │ │ ├── ex10_parameter_owner.h │ │ └── golden.log │ │ ├── ex11_Directly_Associating_Parameters │ │ ├── docs │ │ │ └── ex11_Directly_Associating_Parameters.pdf │ │ ├── ex11_Directly_Associating_Parameters.cpp │ │ ├── ex11_Directly_Associating_Parameters.sln │ │ ├── ex11_Directly_Associating_Parameters.vcxproj │ │ ├── ex11_param_value_sync.h │ │ ├── ex11_parameter_configurator.h │ │ ├── ex11_parameter_owner.h │ │ ├── ex11_top_module.h │ │ └── golden.log │ │ ├── ex12_Indirectly_Associating_Parameters │ │ ├── docs │ │ │ └── ex12_Indirectly_Associating_Parameters.pdf │ │ ├── ex12_Indirectly_Associating_Parameters.cpp │ │ ├── ex12_Indirectly_Associating_Parameters.sln │ │ ├── ex12_Indirectly_Associating_Parameters.vcxproj │ │ ├── ex12_param_value_sync_with_cf.h │ │ ├── ex12_parameter_configurator.h │ │ ├── ex12_parameter_owner.h │ │ ├── ex12_top_module.h │ │ └── golden.log │ │ ├── ex13_Parameter_Value_Locking │ │ ├── docs │ │ │ └── ex13_Parameter_Value_Locking.pdf │ │ ├── ex13_Parameter_Value_Locking.cpp │ │ ├── ex13_Parameter_Value_Locking.sln │ │ ├── ex13_Parameter_Value_Locking.vcxproj │ │ ├── ex13_parameter_configurator.h │ │ ├── ex13_parameter_owner.h │ │ └── golden.log │ │ ├── ex14_Hiding_Parameters │ │ ├── docs │ │ │ └── ex14_Hiding_Parameters.pdf │ │ ├── ex14_Hiding_Parameters.cpp │ │ ├── ex14_Hiding_Parameters.sln │ │ ├── ex14_Hiding_Parameters.vcxproj │ │ ├── ex14_child.h │ │ ├── ex14_configurator.h │ │ ├── ex14_parent.h │ │ └── golden.log │ │ ├── ex15_Inter_Parameter_Value_Constraints │ │ ├── docs │ │ │ └── ex15_Inter_Parameter_Value_Constraints.pdf │ │ ├── ex15_Inter_Parameter_Value_Constraints.cpp │ │ ├── ex15_Inter_Parameter_Value_Constraints.sln │ │ ├── ex15_Inter_Parameter_Value_Constraints.vcxproj │ │ ├── ex15_address_lines_register.h │ │ ├── ex15_configurator.h │ │ ├── ex15_memory_block.h │ │ ├── ex15_processor.h │ │ └── golden.log │ │ ├── ex16_User_Defined_Data_Type │ │ ├── docs │ │ │ └── ex16_User_Defined_Data_Type.pdf │ │ ├── ex16_User_Defined_Data_Type.cpp │ │ ├── ex16_User_Defined_Data_Type.sln │ │ ├── ex16_User_Defined_Data_Type.vcxproj │ │ ├── ex16_observer.h │ │ ├── ex16_parameter_configurer.h │ │ ├── ex16_parameter_owner.h │ │ ├── ex16_user_datatype.h │ │ └── golden.log │ │ ├── ex17_Preset_Values_from_Config_File │ │ ├── Configuration_File.txt │ │ ├── docs │ │ │ └── ex17_Preset_Values_from_Config_File.pdf │ │ ├── ex17_Preset_Values_from_Config_File.cpp │ │ ├── ex17_Preset_Values_from_Config_File.sln │ │ ├── ex17_Preset_Values_from_Config_File.vcxproj │ │ ├── ex17_cci_configFile_Tool.h │ │ ├── ex17_configset.h │ │ ├── ex17_parameter_configurator.h │ │ ├── ex17_parameter_owner.h │ │ └── golden.log │ │ ├── ex18_Preset_Values_Superset │ │ ├── Configuration_File.txt │ │ ├── docs │ │ │ └── ex18_Preset_Values_Superset.pdf │ │ ├── ex18_Preset_Values_Superset.cpp │ │ ├── ex18_Preset_Values_Superset.sln │ │ ├── ex18_Preset_Values_Superset.vcxproj │ │ ├── ex18_cci_configFile_Tool.h │ │ ├── ex18_configset.h │ │ ├── ex18_parameter_configurator.h │ │ ├── ex18_parameter_owner.h │ │ └── golden.log │ │ ├── ex19_Reset_Param │ │ ├── docs │ │ │ └── ex19_Reset_Param.pdf │ │ ├── ex19_Reset_Param.cpp │ │ ├── ex19_Reset_Param.sln │ │ ├── ex19_Reset_Param.vcxproj │ │ ├── ex19_config_ip.h │ │ ├── ex19_simple_ip.h │ │ └── golden.log │ │ ├── ex20_Tracing_Parameter_Activity │ │ ├── docs │ │ │ └── ex20_Tracing_Parameter_Activity.pdf │ │ ├── ex20_Tracing_Parameter_Activity.cpp │ │ ├── ex20_Tracing_Parameter_Activity.sln │ │ ├── ex20_Tracing_Parameter_Activity.vcxproj │ │ ├── ex20_observer.h │ │ ├── ex20_parameter_owner.h │ │ └── golden.log │ │ ├── ex21_Param_Destruction_Resurrection │ │ ├── docs │ │ │ └── ex21_Param_Destruction_Resurrection.pdf │ │ ├── ex21_Param_Destruction_Resurrection.cpp │ │ ├── ex21_Param_Destruction_Resurrection.sln │ │ ├── ex21_Param_Destruction_Resurrection.vcxproj │ │ ├── ex21_config_ip.h │ │ ├── ex21_simple_ip.h │ │ └── golden.log │ │ ├── ex22_Search_Predicate │ │ ├── docs │ │ │ └── ex22_Search_Predicate.pdf │ │ ├── ex22_Search_Predicate.cpp │ │ ├── ex22_Search_Predicate.sln │ │ ├── ex22_Search_Predicate.vcxproj │ │ ├── ex22_search_ip.h │ │ ├── ex22_simple_ip.h │ │ └── golden.log │ │ └── ex23_Hierarchical_Value_Update │ │ ├── docs │ │ └── ex23_Hierarchical_Value_Update.pdf │ │ ├── ex23_Hierarchical_Value_Update.cpp │ │ ├── ex23_Hierarchical_Value_Update.sln │ │ ├── ex23_Hierarchical_Value_Update.vcxproj │ │ ├── ex23_config_ip.h │ │ ├── ex23_simple_ip.h │ │ ├── ex23_sub_simple_ip.h │ │ └── golden.log ├── msvc16 │ └── cci-config │ │ ├── cci-config.props │ │ ├── cci-config.vcxproj │ │ └── cci-config.vcxproj.filters └── src │ ├── CMakeLists.txt │ ├── cci │ ├── cfg │ │ ├── cci_broker_callbacks.h │ │ ├── cci_broker_handle.cpp │ │ ├── cci_broker_handle.h │ │ ├── cci_broker_if.h │ │ ├── cci_broker_manager.cpp │ │ ├── cci_broker_manager.h │ │ ├── cci_broker_types.h │ │ ├── cci_config_macros.h │ │ ├── cci_macros_undef.h │ │ ├── cci_mutable_types.h │ │ ├── cci_originator.cpp │ │ ├── cci_originator.h │ │ ├── cci_param_callbacks.h │ │ ├── cci_param_if.cpp │ │ ├── cci_param_if.h │ │ ├── cci_param_typed.h │ │ ├── cci_param_typed_handle.h │ │ ├── cci_param_untyped.cpp │ │ ├── cci_param_untyped.h │ │ ├── cci_param_untyped_handle.cpp │ │ ├── cci_param_untyped_handle.h │ │ ├── cci_report_handler.cpp │ │ └── cci_report_handler.h │ ├── core │ │ ├── cci_callback.h │ │ ├── cci_callback_impl.h │ │ ├── cci_cmnhdr.h │ │ ├── cci_core_types.h │ │ ├── cci_filtered_range.h │ │ ├── cci_meta.h │ │ ├── cci_name_gen.cpp │ │ ├── cci_name_gen.h │ │ ├── cci_value.cpp │ │ ├── cci_value.h │ │ ├── cci_value_converter.cpp │ │ ├── cci_value_converter.h │ │ ├── cci_value_iterator.h │ │ ├── rapidjson.h │ │ └── systemc.h │ └── utils │ │ ├── broker.cpp │ │ ├── broker.h │ │ ├── consuming_broker.cpp │ │ └── consuming_broker.h │ ├── cci_configuration │ └── rapidjson │ ├── VERSION │ ├── include │ └── rapidjson │ │ ├── allocators.h │ │ ├── cursorstreamwrapper.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ ├── en.h │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ ├── biginteger.h │ │ ├── clzll.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ ├── uri.h │ │ └── writer.h │ └── license.txt ├── docs ├── CMakeLists.txt ├── DEVELOPMENT.md └── cci │ ├── README │ └── doxygen │ └── Doxyfile.in ├── inspection ├── CMakeLists.txt ├── README.md ├── examples │ ├── CMakeLists.txt │ ├── ex01_direct_inheritance │ │ └── ex01_direct_inheritance.cpp │ └── ex02_adapter │ │ └── ex02_adapter.cpp ├── msvc16 │ └── cci-inspection │ │ ├── cci-inspection.vcxproj │ │ └── cci-inspection.vcxproj.filters ├── src │ ├── CMakeLists.txt │ ├── cci │ │ └── inspection │ │ │ ├── cci_inspection.cpp │ │ │ └── cci_inspection.h │ └── cci_inspection └── test │ ├── CMakeLists.txt │ └── test01_basic │ └── test01_basic.cpp ├── msvc16 └── cci.sln └── test ├── CMakeLists.txt ├── README.md └── src ├── climate_control.h ├── example.cpp ├── input.h ├── temp_knob.h └── temp_sensor.h /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/visualstudio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/.github/workflows/visualstudio.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/NEWS -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/README.md -------------------------------------------------------------------------------- /RELEASENOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/RELEASENOTES.md -------------------------------------------------------------------------------- /cci/common/cci_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/cci/common/cci_version.h -------------------------------------------------------------------------------- /cmake/INSTALL_USING_CMAKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/cmake/INSTALL_USING_CMAKE -------------------------------------------------------------------------------- /cmake/SystemCCCIConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/cmake/SystemCCCIConfig.cmake.in -------------------------------------------------------------------------------- /configuration/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/AUTHORS -------------------------------------------------------------------------------- /configuration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/CMakeLists.txt -------------------------------------------------------------------------------- /configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/README.md -------------------------------------------------------------------------------- /configuration/cmake/FindSystemCLanguage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/cmake/FindSystemCLanguage.cmake -------------------------------------------------------------------------------- /configuration/cmake/run_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/cmake/run_test.cmake -------------------------------------------------------------------------------- /configuration/docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/docs/README -------------------------------------------------------------------------------- /configuration/docs/SystemC_Configuration_Tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/docs/SystemC_Configuration_Tutorial.pdf -------------------------------------------------------------------------------- /configuration/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/CMakeLists.txt -------------------------------------------------------------------------------- /configuration/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/README.md -------------------------------------------------------------------------------- /configuration/examples/build-msvc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/build-msvc/Makefile -------------------------------------------------------------------------------- /configuration/examples/build-msvc/Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/build-msvc/Makefile.config -------------------------------------------------------------------------------- /configuration/examples/build-msvc/Makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/build-msvc/Makefile.rules -------------------------------------------------------------------------------- /configuration/examples/build-msvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/build-msvc/README.md -------------------------------------------------------------------------------- /configuration/examples/build-msvc/cci_examples.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/build-msvc/cci_examples.props -------------------------------------------------------------------------------- /configuration/examples/build-msvc/cci_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/build-msvc/cci_examples.sln -------------------------------------------------------------------------------- /configuration/examples/build-msvc/openhere.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/build-msvc/openhere.bat -------------------------------------------------------------------------------- /configuration/examples/build-msvc/vsvars.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/build-msvc/vsvars.bat -------------------------------------------------------------------------------- /configuration/examples/cci/common/inc/param_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/common/inc/param_tracker.h -------------------------------------------------------------------------------- /configuration/examples/cci/common/inc/xreport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/common/inc/xreport.hpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex01_Simple_Int_Param/docs/ex01_Simple_Int_Param.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex01_Simple_Int_Param/docs/ex01_Simple_Int_Param.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex01_Simple_Int_Param/ex01_Simple_Int_Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex01_Simple_Int_Param/ex01_Simple_Int_Param.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex01_Simple_Int_Param/ex01_Simple_Int_Param.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex01_Simple_Int_Param/ex01_Simple_Int_Param.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex01_Simple_Int_Param/ex01_Simple_Int_Param.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex01_Simple_Int_Param/ex01_Simple_Int_Param.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex01_Simple_Int_Param/ex01_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex01_Simple_Int_Param/ex01_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex01_Simple_Int_Param/ex01_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex01_Simple_Int_Param/ex01_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex01_Simple_Int_Param/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex01_Simple_Int_Param/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/docs/ex02_Fully_Supported_Data_Type_Param.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/docs/ex02_Fully_Supported_Data_Type_Param.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_Fully_Supported_Data_Type_Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_Fully_Supported_Data_Type_Param.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_Fully_Supported_Data_Type_Param.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_Fully_Supported_Data_Type_Param.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_Fully_Supported_Data_Type_Param.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_Fully_Supported_Data_Type_Param.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/ex02_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex02_Fully_Supported_Data_Type_Param/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex03_Elab_Time_Param/docs/ex03_Elab_Time_Param.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex03_Elab_Time_Param/docs/ex03_Elab_Time_Param.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex03_Elab_Time_Param/ex03_Elab_Time_Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex03_Elab_Time_Param/ex03_Elab_Time_Param.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex03_Elab_Time_Param/ex03_Elab_Time_Param.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex03_Elab_Time_Param/ex03_Elab_Time_Param.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex03_Elab_Time_Param/ex03_Elab_Time_Param.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex03_Elab_Time_Param/ex03_Elab_Time_Param.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex03_Elab_Time_Param/ex03_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex03_Elab_Time_Param/ex03_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex03_Elab_Time_Param/ex03_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex03_Elab_Time_Param/ex03_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex03_Elab_Time_Param/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex03_Elab_Time_Param/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex04_Simple_Immutable_Param/docs/ex04_Simple_Immutable_Param.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex04_Simple_Immutable_Param/docs/ex04_Simple_Immutable_Param.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_Simple_Immutable_Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_Simple_Immutable_Param.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_Simple_Immutable_Param.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_Simple_Immutable_Param.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_Simple_Immutable_Param.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_Simple_Immutable_Param.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex04_Simple_Immutable_Param/ex04_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex04_Simple_Immutable_Param/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex04_Simple_Immutable_Param/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex05_Default_and_Preset_Value/docs/ex05_Default_and_Preset_Value.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex05_Default_and_Preset_Value/docs/ex05_Default_and_Preset_Value.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_Default_and_Preset_Value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_Default_and_Preset_Value.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_Default_and_Preset_Value.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_Default_and_Preset_Value.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_Default_and_Preset_Value.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_Default_and_Preset_Value.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex05_Default_and_Preset_Value/ex05_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex05_Default_and_Preset_Value/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex05_Default_and_Preset_Value/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex06_Parameter_Naming/docs/ex06_Parameter_Naming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex06_Parameter_Naming/docs/ex06_Parameter_Naming.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex06_Parameter_Naming/ex06_Parameter_Naming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex06_Parameter_Naming/ex06_Parameter_Naming.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex06_Parameter_Naming/ex06_Parameter_Naming.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex06_Parameter_Naming/ex06_Parameter_Naming.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex06_Parameter_Naming/ex06_Parameter_Naming.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex06_Parameter_Naming/ex06_Parameter_Naming.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex06_Parameter_Naming/ex06_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex06_Parameter_Naming/ex06_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex06_Parameter_Naming/ex06_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex06_Parameter_Naming/ex06_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex06_Parameter_Naming/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex06_Parameter_Naming/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex07_Parameter_Information/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex07_Parameter_Information/README.txt -------------------------------------------------------------------------------- /configuration/examples/cci/ex07_Parameter_Information/docs/ex07_Parameter_Information.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex07_Parameter_Information/docs/ex07_Parameter_Information.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex07_Parameter_Information/ex07_Parameter_Information.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex07_Parameter_Information/ex07_Parameter_Information.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex07_Parameter_Information/ex07_Parameter_Information.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex07_Parameter_Information/ex07_Parameter_Information.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex07_Parameter_Information/ex07_Parameter_Information.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex07_Parameter_Information/ex07_Parameter_Information.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex07_Parameter_Information/ex07_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex07_Parameter_Information/ex07_observer.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex07_Parameter_Information/ex07_parameter_configurer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex07_Parameter_Information/ex07_parameter_configurer.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex07_Parameter_Information/ex07_parameter_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex07_Parameter_Information/ex07_parameter_owner.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex07_Parameter_Information/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex07_Parameter_Information/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/docs/ex08_Parameter_Value_Change_Callbacks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/docs/ex08_Parameter_Value_Change_Callbacks.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_Parameter_Value_Change_Callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_Parameter_Value_Change_Callbacks.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_Parameter_Value_Change_Callbacks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_Parameter_Value_Change_Callbacks.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_Parameter_Value_Change_Callbacks.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_Parameter_Value_Change_Callbacks.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/ex08_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex08_Parameter_Value_Change_Callbacks/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/docs/ex09_Parent_Control_of_Preset_Values.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/docs/ex09_Parent_Control_of_Preset_Values.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_Parent_Control_of_Preset_Values.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_Parent_Control_of_Preset_Values.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_Parent_Control_of_Preset_Values.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_Parent_Control_of_Preset_Values.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_Parent_Control_of_Preset_Values.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_Parent_Control_of_Preset_Values.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_initiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_initiator.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_router.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_target.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_top_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/ex09_top_module.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex09_Parent_Control_of_Preset_Values/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex10_Shared_Parameters/docs/ex10_Shared_Parameters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex10_Shared_Parameters/docs/ex10_Shared_Parameters.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex10_Shared_Parameters/ex10_Shared_Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex10_Shared_Parameters/ex10_Shared_Parameters.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex10_Shared_Parameters/ex10_Shared_Parameters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex10_Shared_Parameters/ex10_Shared_Parameters.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex10_Shared_Parameters/ex10_Shared_Parameters.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex10_Shared_Parameters/ex10_Shared_Parameters.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex10_Shared_Parameters/ex10_parameter_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex10_Shared_Parameters/ex10_parameter_configurator.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex10_Shared_Parameters/ex10_parameter_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex10_Shared_Parameters/ex10_parameter_owner.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex10_Shared_Parameters/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex10_Shared_Parameters/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex11_Directly_Associating_Parameters/docs/ex11_Directly_Associating_Parameters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex11_Directly_Associating_Parameters/docs/ex11_Directly_Associating_Parameters.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_Directly_Associating_Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_Directly_Associating_Parameters.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_Directly_Associating_Parameters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_Directly_Associating_Parameters.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_Directly_Associating_Parameters.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_Directly_Associating_Parameters.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_param_value_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_param_value_sync.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_parameter_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_parameter_configurator.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_parameter_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_parameter_owner.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_top_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex11_Directly_Associating_Parameters/ex11_top_module.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex11_Directly_Associating_Parameters/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex11_Directly_Associating_Parameters/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex12_Indirectly_Associating_Parameters/docs/ex12_Indirectly_Associating_Parameters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex12_Indirectly_Associating_Parameters/docs/ex12_Indirectly_Associating_Parameters.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_Indirectly_Associating_Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_Indirectly_Associating_Parameters.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_Indirectly_Associating_Parameters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_Indirectly_Associating_Parameters.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_Indirectly_Associating_Parameters.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_Indirectly_Associating_Parameters.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_param_value_sync_with_cf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_param_value_sync_with_cf.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_parameter_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_parameter_configurator.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_parameter_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_parameter_owner.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_top_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex12_Indirectly_Associating_Parameters/ex12_top_module.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex12_Indirectly_Associating_Parameters/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex12_Indirectly_Associating_Parameters/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex13_Parameter_Value_Locking/docs/ex13_Parameter_Value_Locking.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex13_Parameter_Value_Locking/docs/ex13_Parameter_Value_Locking.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_Parameter_Value_Locking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_Parameter_Value_Locking.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_Parameter_Value_Locking.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_Parameter_Value_Locking.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_Parameter_Value_Locking.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_Parameter_Value_Locking.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_parameter_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_parameter_configurator.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_parameter_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex13_Parameter_Value_Locking/ex13_parameter_owner.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex13_Parameter_Value_Locking/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex13_Parameter_Value_Locking/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex14_Hiding_Parameters/docs/ex14_Hiding_Parameters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex14_Hiding_Parameters/docs/ex14_Hiding_Parameters.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex14_Hiding_Parameters/ex14_Hiding_Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex14_Hiding_Parameters/ex14_Hiding_Parameters.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex14_Hiding_Parameters/ex14_Hiding_Parameters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex14_Hiding_Parameters/ex14_Hiding_Parameters.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex14_Hiding_Parameters/ex14_Hiding_Parameters.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex14_Hiding_Parameters/ex14_Hiding_Parameters.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex14_Hiding_Parameters/ex14_child.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex14_Hiding_Parameters/ex14_child.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex14_Hiding_Parameters/ex14_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex14_Hiding_Parameters/ex14_configurator.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex14_Hiding_Parameters/ex14_parent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex14_Hiding_Parameters/ex14_parent.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex14_Hiding_Parameters/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex14_Hiding_Parameters/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/docs/ex15_Inter_Parameter_Value_Constraints.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/docs/ex15_Inter_Parameter_Value_Constraints.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_Inter_Parameter_Value_Constraints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_Inter_Parameter_Value_Constraints.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_Inter_Parameter_Value_Constraints.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_Inter_Parameter_Value_Constraints.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_Inter_Parameter_Value_Constraints.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_Inter_Parameter_Value_Constraints.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_address_lines_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_address_lines_register.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_configurator.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_memory_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_memory_block.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/ex15_processor.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex15_Inter_Parameter_Value_Constraints/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex16_User_Defined_Data_Type/docs/ex16_User_Defined_Data_Type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex16_User_Defined_Data_Type/docs/ex16_User_Defined_Data_Type.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_User_Defined_Data_Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_User_Defined_Data_Type.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_User_Defined_Data_Type.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_User_Defined_Data_Type.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_User_Defined_Data_Type.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_User_Defined_Data_Type.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_observer.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_parameter_configurer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_parameter_configurer.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_parameter_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_parameter_owner.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_user_datatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex16_User_Defined_Data_Type/ex16_user_datatype.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex16_User_Defined_Data_Type/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex16_User_Defined_Data_Type/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/Configuration_File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/Configuration_File.txt -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/docs/ex17_Preset_Values_from_Config_File.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/docs/ex17_Preset_Values_from_Config_File.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_Preset_Values_from_Config_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_Preset_Values_from_Config_File.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_Preset_Values_from_Config_File.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_Preset_Values_from_Config_File.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_Preset_Values_from_Config_File.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_Preset_Values_from_Config_File.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_cci_configFile_Tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_cci_configFile_Tool.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_configset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_configset.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_parameter_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_parameter_configurator.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_parameter_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/ex17_parameter_owner.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex17_Preset_Values_from_Config_File/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex17_Preset_Values_from_Config_File/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/Configuration_File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/Configuration_File.txt -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/docs/ex18_Preset_Values_Superset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/docs/ex18_Preset_Values_Superset.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/ex18_Preset_Values_Superset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/ex18_Preset_Values_Superset.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/ex18_Preset_Values_Superset.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/ex18_Preset_Values_Superset.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/ex18_Preset_Values_Superset.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/ex18_Preset_Values_Superset.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/ex18_cci_configFile_Tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/ex18_cci_configFile_Tool.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/ex18_configset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/ex18_configset.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/ex18_parameter_configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/ex18_parameter_configurator.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/ex18_parameter_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/ex18_parameter_owner.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex18_Preset_Values_Superset/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex18_Preset_Values_Superset/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex19_Reset_Param/docs/ex19_Reset_Param.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex19_Reset_Param/docs/ex19_Reset_Param.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex19_Reset_Param/ex19_Reset_Param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex19_Reset_Param/ex19_Reset_Param.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex19_Reset_Param/ex19_Reset_Param.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex19_Reset_Param/ex19_Reset_Param.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex19_Reset_Param/ex19_Reset_Param.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex19_Reset_Param/ex19_Reset_Param.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex19_Reset_Param/ex19_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex19_Reset_Param/ex19_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex19_Reset_Param/ex19_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex19_Reset_Param/ex19_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex19_Reset_Param/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex19_Reset_Param/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex20_Tracing_Parameter_Activity/docs/ex20_Tracing_Parameter_Activity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex20_Tracing_Parameter_Activity/docs/ex20_Tracing_Parameter_Activity.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_Tracing_Parameter_Activity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_Tracing_Parameter_Activity.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_Tracing_Parameter_Activity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_Tracing_Parameter_Activity.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_Tracing_Parameter_Activity.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_Tracing_Parameter_Activity.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_observer.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_parameter_owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex20_Tracing_Parameter_Activity/ex20_parameter_owner.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex20_Tracing_Parameter_Activity/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex20_Tracing_Parameter_Activity/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex21_Param_Destruction_Resurrection/docs/ex21_Param_Destruction_Resurrection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex21_Param_Destruction_Resurrection/docs/ex21_Param_Destruction_Resurrection.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_Param_Destruction_Resurrection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_Param_Destruction_Resurrection.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_Param_Destruction_Resurrection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_Param_Destruction_Resurrection.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_Param_Destruction_Resurrection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_Param_Destruction_Resurrection.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex21_Param_Destruction_Resurrection/ex21_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex21_Param_Destruction_Resurrection/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex21_Param_Destruction_Resurrection/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex22_Search_Predicate/docs/ex22_Search_Predicate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex22_Search_Predicate/docs/ex22_Search_Predicate.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex22_Search_Predicate/ex22_Search_Predicate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex22_Search_Predicate/ex22_Search_Predicate.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex22_Search_Predicate/ex22_Search_Predicate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex22_Search_Predicate/ex22_Search_Predicate.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex22_Search_Predicate/ex22_Search_Predicate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex22_Search_Predicate/ex22_Search_Predicate.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex22_Search_Predicate/ex22_search_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex22_Search_Predicate/ex22_search_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex22_Search_Predicate/ex22_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex22_Search_Predicate/ex22_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex22_Search_Predicate/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex22_Search_Predicate/golden.log -------------------------------------------------------------------------------- /configuration/examples/cci/ex23_Hierarchical_Value_Update/docs/ex23_Hierarchical_Value_Update.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex23_Hierarchical_Value_Update/docs/ex23_Hierarchical_Value_Update.pdf -------------------------------------------------------------------------------- /configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_Hierarchical_Value_Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_Hierarchical_Value_Update.cpp -------------------------------------------------------------------------------- /configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_Hierarchical_Value_Update.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_Hierarchical_Value_Update.sln -------------------------------------------------------------------------------- /configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_Hierarchical_Value_Update.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_Hierarchical_Value_Update.vcxproj -------------------------------------------------------------------------------- /configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_config_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_config_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_sub_simple_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex23_Hierarchical_Value_Update/ex23_sub_simple_ip.h -------------------------------------------------------------------------------- /configuration/examples/cci/ex23_Hierarchical_Value_Update/golden.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/examples/cci/ex23_Hierarchical_Value_Update/golden.log -------------------------------------------------------------------------------- /configuration/msvc16/cci-config/cci-config.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/msvc16/cci-config/cci-config.props -------------------------------------------------------------------------------- /configuration/msvc16/cci-config/cci-config.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/msvc16/cci-config/cci-config.vcxproj -------------------------------------------------------------------------------- /configuration/msvc16/cci-config/cci-config.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/msvc16/cci-config/cci-config.vcxproj.filters -------------------------------------------------------------------------------- /configuration/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/CMakeLists.txt -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_broker_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_broker_callbacks.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_broker_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_broker_handle.cpp -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_broker_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_broker_handle.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_broker_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_broker_if.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_broker_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_broker_manager.cpp -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_broker_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_broker_manager.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_broker_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_broker_types.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_config_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_config_macros.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_macros_undef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_macros_undef.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_mutable_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_mutable_types.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_originator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_originator.cpp -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_originator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_originator.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_param_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_param_callbacks.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_param_if.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_param_if.cpp -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_param_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_param_if.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_param_typed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_param_typed.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_param_typed_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_param_typed_handle.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_param_untyped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_param_untyped.cpp -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_param_untyped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_param_untyped.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_param_untyped_handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_param_untyped_handle.cpp -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_param_untyped_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_param_untyped_handle.h -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_report_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_report_handler.cpp -------------------------------------------------------------------------------- /configuration/src/cci/cfg/cci_report_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/cfg/cci_report_handler.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_callback.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_callback_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_callback_impl.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_cmnhdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_cmnhdr.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_core_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_core_types.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_filtered_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_filtered_range.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_meta.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_name_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_name_gen.cpp -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_name_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_name_gen.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_value.cpp -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_value.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_value_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_value_converter.cpp -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_value_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_value_converter.h -------------------------------------------------------------------------------- /configuration/src/cci/core/cci_value_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/cci_value_iterator.h -------------------------------------------------------------------------------- /configuration/src/cci/core/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/rapidjson.h -------------------------------------------------------------------------------- /configuration/src/cci/core/systemc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/core/systemc.h -------------------------------------------------------------------------------- /configuration/src/cci/utils/broker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/utils/broker.cpp -------------------------------------------------------------------------------- /configuration/src/cci/utils/broker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/utils/broker.h -------------------------------------------------------------------------------- /configuration/src/cci/utils/consuming_broker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/utils/consuming_broker.cpp -------------------------------------------------------------------------------- /configuration/src/cci/utils/consuming_broker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci/utils/consuming_broker.h -------------------------------------------------------------------------------- /configuration/src/cci_configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/cci_configuration -------------------------------------------------------------------------------- /configuration/src/rapidjson/VERSION: -------------------------------------------------------------------------------- 1 | RapidJSON commit ID: 3f73edae00aba5b0112a80b4d41e6f1ff7d92a3d 2 | -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/allocators.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/document.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/encodings.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/error/en.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/error/error.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/fwd.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/clzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/clzll.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/memorystream.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/pointer.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/reader.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/schema.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/stream.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/uri.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/include/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/include/rapidjson/writer.h -------------------------------------------------------------------------------- /configuration/src/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/configuration/src/rapidjson/license.txt -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/cci/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/docs/cci/README -------------------------------------------------------------------------------- /docs/cci/doxygen/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/docs/cci/doxygen/Doxyfile.in -------------------------------------------------------------------------------- /inspection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/CMakeLists.txt -------------------------------------------------------------------------------- /inspection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/README.md -------------------------------------------------------------------------------- /inspection/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/examples/CMakeLists.txt -------------------------------------------------------------------------------- /inspection/examples/ex01_direct_inheritance/ex01_direct_inheritance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/examples/ex01_direct_inheritance/ex01_direct_inheritance.cpp -------------------------------------------------------------------------------- /inspection/examples/ex02_adapter/ex02_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/examples/ex02_adapter/ex02_adapter.cpp -------------------------------------------------------------------------------- /inspection/msvc16/cci-inspection/cci-inspection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/msvc16/cci-inspection/cci-inspection.vcxproj -------------------------------------------------------------------------------- /inspection/msvc16/cci-inspection/cci-inspection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/msvc16/cci-inspection/cci-inspection.vcxproj.filters -------------------------------------------------------------------------------- /inspection/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/src/CMakeLists.txt -------------------------------------------------------------------------------- /inspection/src/cci/inspection/cci_inspection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/src/cci/inspection/cci_inspection.cpp -------------------------------------------------------------------------------- /inspection/src/cci/inspection/cci_inspection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/src/cci/inspection/cci_inspection.h -------------------------------------------------------------------------------- /inspection/src/cci_inspection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/src/cci_inspection -------------------------------------------------------------------------------- /inspection/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/test/CMakeLists.txt -------------------------------------------------------------------------------- /inspection/test/test01_basic/test01_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/inspection/test/test01_basic/test01_basic.cpp -------------------------------------------------------------------------------- /msvc16/cci.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/msvc16/cci.sln -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/test/README.md -------------------------------------------------------------------------------- /test/src/climate_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/test/src/climate_control.h -------------------------------------------------------------------------------- /test/src/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/test/src/example.cpp -------------------------------------------------------------------------------- /test/src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/test/src/input.h -------------------------------------------------------------------------------- /test/src/temp_knob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/test/src/temp_knob.h -------------------------------------------------------------------------------- /test/src/temp_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/accellera-official/cci/HEAD/test/src/temp_sensor.h --------------------------------------------------------------------------------