diff --git a/src/Instructions.hs b/src/Instructions.hs new file mode 100644 index 0000000..4b6597d --- /dev/null +++ b/src/Instructions.hs @@ -0,0 +1,24 @@ +module Instructions ( + module Instructions.GenericInstructions, + module Instructions.IntInstructions, + module Instructions.FloatInstructions, + module Instructions.StringInstructions, + module Instructions.CharInstructions, + module Instructions.CodeInstructions, + module Instructions.ExecInstructions, + module Instructions.LogicalInstructions, + module Instructions.VectorIntInstructions, + module Instructions.VectorFloatInstructions +) +where + +import Instructions.GenericInstructions +import Instructions.IntInstructions +import Instructions.FloatInstructions +import Instructions.StringInstructions +import Instructions.CharInstructions +import Instructions.CodeInstructions +import Instructions.ExecInstructions +import Instructions.LogicalInstructions +import Instructions.VectorIntInstructions +import Instructions.VectorFloatInstructions