dol: initial dol commit
[jump.git] / dol / src / dol / visitor / hdsd / scd / fsm / scd_stm_time_req.h
1 #ifndef SCD_STM_TIME_REQ_H
2 #define SCD_STM_TIME_REQ_H
3
4 #include "fsm/scd_stm_base.h"
5
6
7 class scd_stm_time_req : public scd_stm_base
8 {
9 public:
10     scd_stm_time_req(scd_simulator& sim, scd_cont_man_master& fsm):
11        scd_stm_base(sim, fsm) { _name = "time_req"; }
12     virtual ~scd_stm_time_req() {}
13
14     /* scd_cont_fsm_if */
15     void set_busy();
16     void process();
17
18 private:
19     void _send_time_nack();
20 };
21
22 #endif