From 53d62f31c7057ee039784a81084d345fb8046681 Mon Sep 17 00:00:00 2001 From: Rowan Torbitzky-Lane Date: Wed, 29 Jan 2025 14:50:42 -0600 Subject: [PATCH] add instructions to re export --- src/Instructions.hs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/Instructions.hs 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