view a13/smv/test7.smv @ 183:3fa72793620b

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 13 Jun 2021 20:45:17 +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;