lib/sema.txt
author mjsousa
Wed, 24 Dec 2014 13:19:53 +0000
changeset 967 544ff4dff04f
parent 251 5e7457efbb8f
permissions -rw-r--r--
Do constant propagation to symbolic_variables, and correctly handle constant folding and propagation of variable declarations.
(*
 * (c) 2011 Edouard Tisserant
 *
 * Fake semaphore support, for non preemptive implementation.
 *
 *)


FUNCTION_BLOCK SEMA
  VAR_INPUT
    CLAIM : BOOL;
    RELEASE : BOOL;
  END_VAR
  VAR_OUTPUT
    BUSY : BOOL;
  END_VAR
  VAR
    Q_INTERNAL : BOOL;
  END_VAR

  Q_INTERNAL := CLAIM OR ( Q_INTERNAL AND (NOT RELEASE));
  BUSY := Q_INTERNAL;

END_FUNCTION_BLOCK