X-Git-Url: http://sraa.de/git/?a=blobdiff_plain;f=dol%2Fsrc%2Fdol%2Fvisitor%2Fhdsd%2Fscd%2Ffsm%2Fscd_stm_time_req.h;fp=dol%2Fsrc%2Fdol%2Fvisitor%2Fhdsd%2Fscd%2Ffsm%2Fscd_stm_time_req.h;h=275bd95707bf20d6ff55f674b6266f5167fdefdb;hb=8c411cf24ed0eb889191aaeafd8fa1e69081df42;hp=0000000000000000000000000000000000000000;hpb=dea7a4fb1ed110d3ce6e6d9255103d724bd66c0e;p=jump.git diff --git a/dol/src/dol/visitor/hdsd/scd/fsm/scd_stm_time_req.h b/dol/src/dol/visitor/hdsd/scd/fsm/scd_stm_time_req.h new file mode 100644 index 0000000..275bd95 --- /dev/null +++ b/dol/src/dol/visitor/hdsd/scd/fsm/scd_stm_time_req.h @@ -0,0 +1,22 @@ +#ifndef SCD_STM_TIME_REQ_H +#define SCD_STM_TIME_REQ_H + +#include "fsm/scd_stm_base.h" + + +class scd_stm_time_req : public scd_stm_base +{ +public: + scd_stm_time_req(scd_simulator& sim, scd_cont_man_master& fsm): + scd_stm_base(sim, fsm) { _name = "time_req"; } + virtual ~scd_stm_time_req() {} + + /* scd_cont_fsm_if */ + void set_busy(); + void process(); + +private: + void _send_time_nack(); +}; + +#endif