Add automated testbench generation according to supplied test input
[matthijs/master-project/cλash.git] / cλash / CLasH / VHDL / Constants.hs
index 317cb64d9ec9e8b9147441b76023fee14cdb6aad..f465d848642c6e8b47e92716ea652af784992f03 100644 (file)
@@ -261,6 +261,21 @@ toUnsignedId = "to_unsigned"
 resizeId :: String
 resizeId = "resize"
 
+-- | output file identifier (from std.textio)
+showIdString :: String
+showIdString = "show"
+
+showId :: AST.VHDLId
+showId = AST.unsafeVHDLBasicId showIdString
+
+-- | write function identifier (from std.textio)
+writeId :: AST.VHDLId
+writeId = AST.unsafeVHDLBasicId "write"
+
+-- | output file identifier (from std.textio)
+outputId :: AST.VHDLId
+outputId = AST.unsafeVHDLBasicId "output"
+
 ------------------
 -- VHDL type marks
 ------------------