Files
spark2014/docs/case_study/ex6/programswitch.ads

14 lines
281 B
Ada

package ProgramSwitch
--# own in Inputs;
is
type Positions is (auto, clock, on1, off1, on2, off2);
procedure Read( Value : out Positions);
--# global in Inputs;
--# derives Value from Inputs;
--
-- Reads the position of the program switch.
end ProgramSwitch;