#ifndef morpheo_behavioural_generic_counter_Counter_h #define morpheo_behavioural_generic_counter_Counter_h /* * $Id: Counter.h 88 2008-12-10 18:31:39Z rosiere $ * * [ Description ] * */ #ifdef SYSTEMC #include "systemc.h" #endif #include #include "Common/include/ToString.h" #include "Common/include/Debug.h" #include "Behavioural/Generic/Counter/include/Parameters.h" #include "Behavioural/Generic/Counter/include/Types.h" #ifdef STATISTICS #include "Behavioural/include/Stat.h" #endif #ifdef VHDL #include "Behavioural/include/Vhdl.h" #endif #include "Behavioural/include/Component.h" #include "Behavioural/include/Usage.h" namespace morpheo { namespace behavioural { namespace generic { namespace counter { class Counter #if SYSTEMC : public sc_module #endif { // -----[ fields ]---------------------------------------------------- // Parameters protected : const std::string _name; protected : const Parameters _param; private : const Tusage_t _usage; #ifdef STATISTICS public : Stat * _stat; #endif public : Component * _component; private : Interfaces * _interfaces; #ifdef SYSTEMC // ~~~~~[ Interface ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Interface public : SC_CLOCK * in_CLOCK ; public : SC_IN (Tcontrol_t) * in_NRESET ; public : SC_IN (Tdata_t) ** in_COUNTER_DATA ; public : SC_IN (Tcontrol_t) ** in_COUNTER_ADDSUB ; public : SC_OUT(Tdata_t) ** out_COUNTER_DATA ; // ~~~~~[ Component ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // ~~~~~[ Register ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // ~~~~~[ Internal ]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ #endif // -----[ methods ]--------------------------------------------------- #ifdef SYSTEMC SC_HAS_PROCESS (Counter); public : Counter (sc_module_name name, #else public : Counter (std::string name, #endif #ifdef STATISTICS morpheo::behavioural::Parameters_Statistics * param_statistics, #endif Parameters param, Tusage_t usage); public : Counter (Parameters param ); public : ~Counter (void); private : void allocation (void); private : void deallocation (void); #ifdef SYSTEMC #if defined(STATISTICS) or defined(VHDL_TESTBENCH) public : void transition (void); #endif public : void genMealy (void); #endif #ifdef STATISTICS public : void statistics_declaration (morpheo::behavioural::Parameters_Statistics * param_statistics); #endif #if VHDL public : void vhdl (void); private : void vhdl_port (Vhdl * & vhdl); private : void vhdl_declaration (Vhdl * & vhdl); private : void vhdl_body (Vhdl * & vhdl); #endif #if defined(STATISTICS) or defined(VHDL_TESTBENCH) private : void end_cycle (void); #endif }; }; // end namespace counter }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif