view a13/smv/test1.smv @ 139:3be1afb87f82

add utm
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 14 Mar 2020 17:34:54 +0900
parents 0e8a0e50ed26
children
line wrap: on
line source

MODULE main
VAR
  request : boolean;
  state : {ready, busy};
ASSIGN
  init(state) := ready;
  next(state) := case
                   state = ready & request : busy;
                   TRUE : {ready, busy}; esac;