never executed always true always false
1 module HelVM.HelMA.Automaton.Instruction.Groups.LSInstruction where 2 3 import HelVM.HelMA.Automaton.Instruction.Extras.Common 4 import HelVM.HelMA.Automaton.Instruction.Groups.IOInstruction 5 6 -- | Types 7 8 data LSInstruction = 9 Load --Restore --Fetch 10 | LoadD !ImmediateIndex 11 | Store --Save 12 | StoreID !Integer !ImmediateIndex 13 | MoveD !ImmediateIndex !ImmediateIndex 14 | MIO !IOInstruction 15 deriving stock (Eq , Read , Show)