X-Git-Url: http://sraa.de/git/?a=blobdiff_plain;f=dol%2Fsrc%2Fdol%2Fvisitor%2Fhdsd%2Fscd%2Ffsm%2Fscd_sts_terminated.cpp;fp=dol%2Fsrc%2Fdol%2Fvisitor%2Fhdsd%2Fscd%2Ffsm%2Fscd_sts_terminated.cpp;h=7bd423317f23861613fb69c699566b844e000cae;hb=8c411cf24ed0eb889191aaeafd8fa1e69081df42;hp=0000000000000000000000000000000000000000;hpb=dea7a4fb1ed110d3ce6e6d9255103d724bd66c0e;p=jump.git diff --git a/dol/src/dol/visitor/hdsd/scd/fsm/scd_sts_terminated.cpp b/dol/src/dol/visitor/hdsd/scd/fsm/scd_sts_terminated.cpp new file mode 100644 index 0000000..7bd4233 --- /dev/null +++ b/dol/src/dol/visitor/hdsd/scd/fsm/scd_sts_terminated.cpp @@ -0,0 +1,19 @@ +#include "fsm/scd_sts_terminated.h" + +#include "scd_logging.h" +#include "scd_exception.h" + + +void scd_sts_terminated::set_busy() +{ + scd_error("received further events while synchronizing (terminate)"); +} + + +void scd_sts_terminated::set_idle(const sc_core::sc_time& time) +{ + scd_error("received future events while synchronizing (terminate)"); +} + + +bool scd_sts_terminated::active() const { return false; }