add instructions to re export

This commit is contained in:
Rowan Torbitzky-Lane 2025-01-29 14:50:42 -06:00
parent 0c9538e2f2
commit 53d62f31c7

24
src/Instructions.hs Normal file

@ -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