Added equals builtin. And fixed show function generation for integers
[matthijs/master-project/cλash.git] / cλash / CLasH / VHDL / Constants.hs
index 66c43a4395faf9148e862a0efbb9d66789961851..b0236f5364351ec63b333aabc1940c34193d1259 100644 (file)
@@ -125,6 +125,9 @@ initId = "init"
 tailId :: String
 tailId = "tail"
 
+-- | minimum ftp function identifier
+minimumId :: String
+minimumId = "minimum"
 
 -- | take function identifier
 takeId :: String
@@ -226,6 +229,10 @@ hwandId = "hwand"
 lengthTId :: String
 lengthTId = "lengthT"
 
+-- Equality Operations
+equalsId :: String
+equalsId = "=="
+
 -- Numeric Operations
 
 -- | plus operation identifier
@@ -263,6 +270,15 @@ toUnsignedId = "to_unsigned"
 resizeId :: String
 resizeId = "resize"
 
+smallIntegerId :: String
+smallIntegerId = "smallInteger"
+
+sizedIntId :: String
+sizedIntId = "SizedInt"
+
+tfvecId :: String
+tfvecId = "TFVec"
+
 -- | output file identifier (from std.textio)
 showIdString :: String
 showIdString = "show"