view a13/smv/test7.smv @ 127:0e8a0e50ed26

add some files
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 23 Nov 2019 12:59:45 +0900
parents
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;