Skip to content
Snippets Groups Projects
Select Git revision
  • 7c3fc0a658b2ec5fc25da3a66de1e36e31c556fd
  • master default protected
  • exec_auto_adjust_trace
  • let_variables
  • v1.4.1
  • v1.4.0
  • v1.3.0
  • v1.2.0
  • v1.1.0
  • v1.0.0
10 results

settings.gradle

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    button.mch 344 B
    MACHINE button
    DEFINITIONS "LibraryMeta.def"
    VARIABLES
      button
    INVARIANT
      button:BOOL
    INITIALISATION
      button := FALSE
    OPERATIONS
      press_button = PRE button=FALSE THEN
        button:=TRUE
      END;
      toggle_button = BEGIN
        button:= bool(button=FALSE)
      END;
      set_button(newVal) = PRE newVal:BOOL THEN
         button := bool(newVal=TRUE)
      END
    END