dol: initial dol commit
[jump.git] / dol / src / dol / visitor / hdsd / scd / fsm / scd_stm_busy.h
1 #ifndef SCD_STM_BUSY_H
2 #define SCD_STM_BUSY_H
3
4 #include "fsm/scd_stm_base.h"
5
6
7 class scd_stm_busy : public scd_stm_base
8 {
9 public:
10     scd_stm_busy(scd_simulator& sim, scd_cont_man_master& fsm):
11        scd_stm_base(sim, fsm) { _name = "busy"; }
12     virtual ~scd_stm_busy() {}
13
14
15     /* scd_cont_fsm_if */
16     void set_idle(const sc_core::sc_time& time);
17     void set_done();
18     bool busy() const;
19
20 };
21
22 #endif