X-Git-Url: http://sraa.de/git/?a=blobdiff_plain;f=dol%2Fsrc%2Fdol%2Fvisitor%2Fhdsd%2Fscd%2Ffsm%2Fscd_sts_time_ack.h;fp=dol%2Fsrc%2Fdol%2Fvisitor%2Fhdsd%2Fscd%2Ffsm%2Fscd_sts_time_ack.h;h=ef2c39a27b2da97072fd7a19dda8eac77aee759d;hb=8c411cf24ed0eb889191aaeafd8fa1e69081df42;hp=0000000000000000000000000000000000000000;hpb=dea7a4fb1ed110d3ce6e6d9255103d724bd66c0e;p=jump.git diff --git a/dol/src/dol/visitor/hdsd/scd/fsm/scd_sts_time_ack.h b/dol/src/dol/visitor/hdsd/scd/fsm/scd_sts_time_ack.h new file mode 100644 index 0000000..ef2c39a --- /dev/null +++ b/dol/src/dol/visitor/hdsd/scd/fsm/scd_sts_time_ack.h @@ -0,0 +1,28 @@ +#ifndef SCD_STS_TIME_ACK_H +#define SCD_STS_TIME_ACK_H + +#include "fsm/scd_sts_base.h" + + +/* forward declaration */ +class scd_cont_man_slave; + + +class scd_sts_time_ack : public scd_sts_base +{ +public: + scd_sts_time_ack(scd_simulator& sim, scd_cont_man_slave& fsm): + scd_sts_base(sim, fsm) { _name = "time_ack"; } + virtual ~scd_sts_time_ack() {} + + /* scd_sts_base */ + void recv_time_req(); + void recv_time_nack(); + void recv_time(const sc_core::sc_time& time); + void recv_term_req(); + + void set_busy(); + +}; + +#endif